mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from './store'
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app');
|