Move state initialization from App.vue to main.ts
This commit is contained in:
parent
75d9bab34d
commit
55816a486a
|
@ -1,8 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import Table from "./components/Table.vue";
|
||||
import { state } from "./state";
|
||||
|
||||
state.populate()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
import { createApp } from 'vue'
|
||||
import './style.scss'
|
||||
import App from './App.vue'
|
||||
import { state } from "./state";
|
||||
import 'bulma/css/bulma.css'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
|
||||
state.populate()
|
Loading…
Reference in a new issue