mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-31 23:29:27 +08:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import { createApp } from 'vue';
|
|
import './game/index';
|
|
import './core/index';
|
|
import App from './App.vue';
|
|
import './styles.less';
|
|
import 'ant-design-vue/dist/antd.dark.css';
|
|
|
|
createApp(App).mount('#root');
|
|
|
|
main.init('play');
|
|
main.listen();
|