Last active
March 28, 2020 07:21
-
-
Save outiy5/f0241ccc3da0e9021e8cd76f23d61115 to your computer and use it in GitHub Desktop.
[vue script template] 一个vue script中可以做哪些事情? #vue #quasar
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 characters
| 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() { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment