1.1.0 • Published 3 years ago

vue-confirm-input v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
3 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

3 years ago

1.0.2

5 years ago

1.0.1

6 years ago

1.0.0

7 years ago