1 Star 0 Fork 0

sh9836 / qs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
sh9836 提交于 2024-04-10 17:22 . 弹窗
// #ifndef VUE3
import Vue from 'vue'
import App from './App'
import './utils/permission.js'
import store from './store'
//弹窗组件
import initModal from "./components/show_modal/initModal.js"
import showModal from "./components/show_modal/show_modal.vue"
initModal(Vue)
Vue.component('showModal',showModal)
// Vue.prototype.$store = store
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
import App from './App.vue'
// import './utils/permission.js'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif
1
https://gitee.com/sh998/qs.git
git@gitee.com:sh998/qs.git
sh998
qs
qs
master

搜索帮助