Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Last active September 7, 2023 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bachhm-dev/fecb72b80ba533afd344f76ca81bfef1 to your computer and use it in GitHub Desktop.
Save bachhm-dev/fecb72b80ba533afd344f76ca81bfef1 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