1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-02-23 01:12:59 +08:00
cfx-server-data/resources/[gameplay]/chat/html/main.ts

7 lines
124 B
TypeScript
Raw Normal View History

2020-04-12 21:16:02 +08:00
import Vue from 'vue';
import App from './App.vue';
const instance = new Vue({
el: '#app',
render: h => h(App),
});