Files
enfrancais-app/src/components/text/TextCard.vue
T

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>