mirror of
https://github.com/tenrok/vue-tribute.git
synced 2026-06-06 01:32:25 +03:00
22 lines
361 B
Vue
22 lines
361 B
Vue
<template>
|
|
<input type="text" v-input-autosize v-model="foo" placeholder="Butts" />
|
|
</template>
|
|
<script>
|
|
import Vue from "vue";
|
|
import VueInputAutosize from "../";
|
|
|
|
Vue.use(VueInputAutosize);
|
|
|
|
export default {
|
|
name: "app",
|
|
ready(){
|
|
console.log("Ready!")
|
|
},
|
|
data(){
|
|
return {
|
|
foo: "Hello"
|
|
}
|
|
}
|
|
}
|
|
</script>
|