mirror of
https://github.com/tenrok/vue-tribute.git
synced 2026-06-23 12:40:36 +03:00
Update lib to work with dynamic value prop. Update spec and readme to accomodate for changes
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
<template>
|
||||
<input type="text" v-input-autosize v-model="foo" placeholder="A placeholder" />
|
||||
</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>
|
||||
@@ -1,6 +0,0 @@
|
||||
import Vue from "vue";
|
||||
import app from "./app";
|
||||
new Vue({
|
||||
el: "body",
|
||||
components: { app }
|
||||
})
|
||||
Reference in New Issue
Block a user