moved TextCard into components

This commit is contained in:
axolotle
2021-03-09 11:54:22 +01:00
parent c1084b48a7
commit 9c2331ebda
3 changed files with 2 additions and 3 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>