Skip to content

Instantly share code, notes, and snippets.

@hykilpikonna
Created February 6, 2022 21:54
Show Gist options
  • Save hykilpikonna/27e55387aa1ecf7851b1ce3c85e70c20 to your computer and use it in GitHub Desktop.
Save hykilpikonna/27e55387aa1ecf7851b1ce3c85e70c20 to your computer and use it in GitHub Desktop.
Vue 3 IDEA Templates
<template>
<div id="${NAME}">
</div>
</template>
<script lang="ts">
import {Options, Vue} from 'vue-class-component';
@Options({components: {}})
export default class ${NAME} extends Vue
{
}
</script>
<style lang="sass" scoped>
</style>
<template>
<div id="${NAME}">
</div>
</template>
<script setup lang="ts">
import {ref} from 'vue'
</script>
<style lang="sass" scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment