tiny-vue/examples/sites/demos/pc/app/ip-address/disabled.vue

19 lines
279 B
Vue

<template>
<tiny-ip-address v-model="value" disabled></tiny-ip-address>
</template>
<script>
import { IpAddress } from '@opentiny/vue'
export default {
components: {
TinyIpAddress: IpAddress
},
data() {
return {
value: '192.168.0.1'
}
}
}
</script>