renamed TextRef query to TextCard

This commit is contained in:
axolotle
2021-03-09 15:33:10 +01:00
parent 9c2331ebda
commit 62ebb0a807
3 changed files with 1 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
<template>
<component-debug :component="this" />
</template>
<script>
export default {
name: 'TextCard',
props: {
id: { type: Number, required: true }
},
created () {
console.log('CREATED TEXTCARD', this.id)
}
}
</script>
<style lang="scss" scoped>
</style>