Files
newfreeplanet_OLD/src/root/home/home.ts

20 lines
282 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
import {
defineComponent, ref, computed,
2021-08-31 18:09:59 +02:00
} from 'vue'
2021-08-31 18:09:59 +02:00
import { tools } from '@src/store/Modules/tools'
2021-10-08 00:38:22 +02:00
import { CSkill } from '@/components/CSkill'
2021-08-31 18:09:59 +02:00
2021-08-31 18:09:59 +02:00
export default defineComponent({
name: 'Home',
2021-10-08 00:38:22 +02:00
components: { CSkill },
2021-08-31 18:09:59 +02:00
setup() {
return {
tools,
}
},
})