<script type="text/x-template" id="app-template">
<v-app>
<v-container>
<v-form ref="form">
<v-otp-input
v-model="otpValue"
></v-otp-input>
</v-form>
<v-btn @click="$refs.form.reset()">Reset form</v-btn>
otpValue: {{otpValue}}
</v-container>
</v-app>
</script>
<div id="app"></div>
// Looking for the v1.5 template?
// https://codepen.io/pen?template=GVoaNe
const App = {
template: '#app-template',
data: () => ({
otpValue: null
})
}
new Vue({
vuetify: new Vuetify(),
render: h => h(App)
}).$mount('#app')