1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-02-22 08:43:12 +08:00
cfx-server-data/resources/[gameplay]/chat/html/main.ts
2020-04-12 15:16:02 +02:00

7 lines
124 B
TypeScript

import Vue from 'vue';
import App from './App.vue';
const instance = new Vue({
el: '#app',
render: h => h(App),
});