2
0
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:
syropian
2016-07-24 20:32:06 -04:00
parent ecd28ee1fd
commit d37b456ae8
7 changed files with 50 additions and 51 deletions
-21
View File
@@ -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>
-6
View File
@@ -1,6 +0,0 @@
import Vue from "vue";
import app from "./app";
new Vue({
el: "body",
components: { app }
})