Skip to content

Instantly share code, notes, and snippets.

@beardcoder
Last active February 9, 2022 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beardcoder/0feba95b465c9cb5fc2cc274ece8637a to your computer and use it in GitHub Desktop.
Save beardcoder/0feba95b465c9cb5fc2cc274ece8637a to your computer and use it in GitHub Desktop.
Synced via Snip
<template>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component
export default class MyComponent extends Vue {
@Prop({ default: null }) items: string[];
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment