setup base texts repr as components

This commit is contained in:
axolotle
2021-03-08 15:51:00 +01:00
parent 738f0cf452
commit 0400afd6d4
4 changed files with 40 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<template>
<component-debug :component="this" />
</template>
<script>
export default {
name: 'CardList'
}
</script>
<style lang="scss" scoped>
</style>
+12
View File
@@ -0,0 +1,12 @@
<template>
<component-debug :component="this" />
</template>
<script>
export default {
name: 'CardMap'
}
</script>
<style lang="scss" scoped>
</style>
+12
View File
@@ -0,0 +1,12 @@
<template>
<component-debug :component="this" />
</template>
<script>
export default {
name: 'TreeMap'
}
</script>
<style lang="scss" scoped>
</style>
+4
View File
@@ -0,0 +1,4 @@
export { default as CardList } from './CardList'
export { default as CardMap } from './CardMap'
export { default as TreeMap } from './TreeMap'