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

18 lines
211 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-08-31 18:09:59 +02:00
export default defineComponent({
name: 'Home',
setup() {
return {
tools,
}
},
})