Created
November 27, 2020 13:02
-
-
Save kparkov/953b5225d1b525f6ec3df2dc5069ff74 to your computer and use it in GitHub Desktop.
A base Vue TS component
This file contains 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 class="ReplaceMe"></div> | |
</template> | |
<style lang="scss" scoped> | |
.ReplaceMe { | |
} | |
</style> | |
<script lang="ts"> | |
import { Component, Prop, Vue } from 'vue-property-decorator'; | |
@Component | |
export default class ReplaceMe extends Vue { | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment