HumanBreak/src/main.ts

6 lines
118 B
TypeScript
Raw Normal View History

2022-11-13 18:02:05 +08:00
import { createApp } from 'vue';
import App from './App.vue';
2022-11-14 17:11:23 +08:00
import './styles.less';
2022-11-13 18:02:05 +08:00
createApp(App).mount('#root');