2021-10-05 00:19:17 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
import {
|
2021-10-05 00:19:17 +02:00
|
|
|
defineComponent, ref, computed,
|
2021-08-31 18:09:59 +02:00
|
|
|
} from 'vue'
|
2021-10-05 15:39:33 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
import { tools } from '@src/store/Modules/tools'
|
|
|
|
|
|
2021-10-05 00:19:17 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'Home',
|
|
|
|
|
setup() {
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
tools,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|