Skip to content

Instantly share code, notes, and snippets.

@deotte
Last active December 2, 2021 03:20
Show Gist options
  • Save deotte/b225bd27f1fbb613e78fe9eead33f03d to your computer and use it in GitHub Desktop.
Save deotte/b225bd27f1fbb613e78fe9eead33f03d to your computer and use it in GitHub Desktop.
Vue 3 Component Skeleton
<template>
<h1>Component Name</h1>
</template>
<script>
export default {
name: 'Component Name',
props: {},
data() {
return {
}
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment