Last active
October 16, 2020 05:24
-
-
Save techlab23/6ed8bc5b009662fc4cbccbf251c48c2b to your computer and use it in GitHub Desktop.
Revisions
-
techlab23 revised this gist
Apr 22, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 @@ -24,7 +24,7 @@ export default { computed: {}, /* Component methods */ methods: { }, /* Vue lifecycle hooks: -
techlab23 revised this gist
Apr 16, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 @@ -17,6 +17,8 @@ export default { message: 'Thinking in components' } }, /* Watchers */ watch: {}, /* Computed properties */ computed: {}, -
techlab23 revised this gist
Apr 16, 2019 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 @@ -11,16 +11,20 @@ export default { /* Properties */ props: [], /* Component's local data */ data() { return { message: 'Thinking in components' } }, /* Computed properties */ computed: {}, /* Component methods */ method: { }, /* Vue lifecycle hooks: Ref: https://vuejs.org/v2/guide/instance.html#Instance-Lifecycle-Hooks */ @@ -31,6 +35,6 @@ export default { .... } </script> <style scoped> </style> -
techlab23 revised this gist
Apr 16, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 @@ -21,7 +21,9 @@ export default { /* Component methods */ method: { }, /* Vue lifecycle hooks: Ref: https://vuejs.org/v2/guide/instance.html#Instance-Lifecycle-Hooks */ created() {}, mounted() {}, updated() {}, -
techlab23 created this gist
Apr 16, 2019 .There are no files selected for viewing
This file contains hidden or 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,34 @@ <template> <div> <h1> {{ message }} </h1> <div </template> <script> export default { /* Child component registration */ components: {}, /* Properties */ props: [], /* Component's local data */ data() { return { message: 'Thinking in components' } }, /* Computed properties */ computed: {}, /* Component methods */ method: { }, /* Vue lifecycle hooks: docs */ created() {}, mounted() {}, updated() {}, destroyed() {} .... } </script> <style> </style>