Files
newfreeplanet_OLD/src/root/home/home.ts
2021-10-08 00:38:22 +02:00

20 lines
282 B
TypeScript
Executable File

import {
defineComponent, ref, computed,
} from 'vue'
import { tools } from '@src/store/Modules/tools'
import { CSkill } from '@/components/CSkill'
export default defineComponent({
name: 'Home',
components: { CSkill },
setup() {
return {
tools,
}
},
})