Skip to content

Instantly share code, notes, and snippets.

@outiy5
Last active March 28, 2020 07:21
Show Gist options
  • Save outiy5/f0241ccc3da0e9021e8cd76f23d61115 to your computer and use it in GitHub Desktop.
Save outiy5/f0241ccc3da0e9021e8cd76f23d61115 to your computer and use it in GitHub Desktop.

Revisions

  1. outiy5 revised this gist Mar 28, 2020. No changes.
  2. outiy5 revised this gist Mar 28, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion page_initial.vue
    Original file line number Diff line number Diff line change
    @@ -22,7 +22,7 @@ export default {
    },
    beforeRouterUpdate() {

    }
    },
    beforeRouterLeave() {


  3. outiy5 created this gist Mar 28, 2020.
    30 changes: 30 additions & 0 deletions page_initial.vue
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    export default {
    name: 'PageForum',
    data() {
    return {
    }
    },
    mounted() {
    // write initial code here when DOM is loaded

    },
    created() {
    // write initial code here before DOM loaded
    },
    methods: {

    },
    watch: {

    },
    beforeRouterEnter() {

    },
    beforeRouterUpdate() {

    }
    beforeRouterLeave() {


    }
    }