21 lines
282 B
Vue
21 lines
282 B
Vue
<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>
|