1.0.7 • Published 4 years ago

ip-address-input-field v1.0.7

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Vue.js IPv4 address input field

Installation

npm install --save ip-address-input-field

Make sure you have installed Vuetify

Installing the plugin will globally add the ip-address-input-field component to your project.

//main.js
import IpAddressInputField from 'ip-address-input-field'
Vue.use(IpAddressInputField)

But you can also import the standalone component to add locally or for more complex installations.

// ipConfiguration.vue
import { IpAddressInputField } from 'ip-address-input-field'
export default {
  components: {
    IpAddressInputField,
  },
}

Basic Usage

<ip-address-input-field v-model="ipAddress" title="Ip address" :disalbed="disabled"></ip-address-input-field>
...
<script>
...
    data() {
        return {
            ipAddress : '',
            disabled : false
        }
    }
...
</script>
1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago