1.1.0 • Published 2 years ago

vue-confirm-input v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
2 years ago

vue-confirm-input

Vue select component

Installation

npm i -D vue-confirm-input

Example

<confirm-input :text="'Value:'" :title="'Enter text'" :value="value"                
                :callback="text => myMethod(text)"/>
                
import ConfirmInput from 'vue-confirm-input'
components: {
    ConfirmInput
}

data: function () {
  return {
    value: 'Default text'
  }
},

methods: {
  myMethod: function (text) {
    console.log(text)
    this.value = text
  }
}
1.1.0

2 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

6 years ago