Created
February 6, 2022 21:54
-
-
Save hykilpikonna/27e55387aa1ecf7851b1ce3c85e70c20 to your computer and use it in GitHub Desktop.
Vue 3 IDEA Templates
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
<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> |
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
<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