Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@winhc
Forked from bachhm-dev/app-without-setup.vue
Created June 8, 2021 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winhc/f26c716dfe63af1c57a8e0aac7348089 to your computer and use it in GitHub Desktop.
Save winhc/f26c716dfe63af1c57a8e0aac7348089 to your computer and use it in GitHub Desktop.
<template>
<!-- template code -->
</template>
<script>
export default {
name: "App",
props: {
/*...*/
}
components: {
/*...*/
},
data(){
return {
/*...*/
}
},
computed:{
/*...*/
},
watch:{
/*...*/
},
methods: {
/*...*/
},
created(){
/*...*/
},
mounted(){
/*...*/
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment