Last active
June 6, 2017 12:01
Revisions
-
sparrow revised this gist
Jun 6, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,8 +5,8 @@ <p> Two-way bound value is {{ text }} </p> </div> <some-component></some-component> </div> </template> -
sparrow revised this gist
Jun 6, 2017 . No changes.There are no files selected for viewing
-
sparrow revised this gist
Jun 6, 2017 . 1 changed file with 15 additions and 13 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,26 +1,28 @@ <template> <div class="root"> <div> <input id="input" v-model="text" type="text" /> <p> Two-way bound value is {{ text }} </p> </div> <some-component></some-component> </div> </template> <script> import SomeComponent from './Cell.vue' export default { components: { SomeComponent }, data () { return { text: 'New Vue App', } } } </script> <style scoped> .root { background-color: #34495e; -
sparrow created this gist
Jun 6, 2017 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ <template> <div class="root"> <div> <input id="input" v-model="text" type="text" /> <p> Two-way bound value is {{ text }} </p> </div> <some-component></some-component> </div> </template> <script> import SomeComponent from './Cell.vue' export default { components: { SomeComponent }, data () { return { text: 'New Vue App', } } } </script> <style scoped> .root { background-color: #34495e; color: #fff; width: 100%; } </style>