rename biblio to library

This commit is contained in:
axolotle
2021-03-08 16:28:49 +01:00
parent 973b191eaf
commit b097712477
6 changed files with 0 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>
+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>
+12
View File
@@ -0,0 +1,12 @@
<template>
<component-debug :component="this" />
</template>
<script>
export default {
name: 'TreeMap'
}
</script>
<style lang="scss" scoped>
</style>
+5
View File
@@ -0,0 +1,5 @@
export { default as CardList } from './CardList'
export { default as CardMap } from './CardMap'
export { default as TreeMap } from './TreeMap'
export { default as TextCard } from './TextCard'