vue-confirm-input

1.1.0 • Public • Published

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
  }
}

/vue-confirm-input/

    Package Sidebar

    Install

    npm i vue-confirm-input

    Weekly Downloads

    2

    Version

    1.1.0

    License

    ISC

    Unpacked Size

    3.5 kB

    Total Files

    4

    Last publish

    Collaborators

    • orlv