mirror of
https://github.com/motajs/template.git
synced 2026-09-03 02:28:51 +08:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { createApp } from 'vue';
|
|
import './styles.less';
|
|
import { createGame } from '@user/entry-client';
|
|
import App from './App.vue';
|
|
|
|
// 客户端入口,在玩家游玩时运行
|
|
|
|
// 创建游戏实例
|
|
createGame();
|
|
createApp(App).mount('#root');
|
|
|
|
main.init('play');
|
|
main.listen();
|