加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 947 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuyong-byte 提交于 2024-05-30 15:31 . 初始化仓库
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import libs from './index.js'
import './permission' // permission
import {addDateRange, handleTree, parseTime, resetForm, selectDictLabel, selectDictLabels, getDownloadUrl} from "./utils/ruoyi";
import { getDicts } from "@/api/system/dict/data";
import VueCompositionAPI from "@vue/composition-api";
Vue.use(VueCompositionAPI);
Vue.use(plugins)
Vue.use(libs)
Vue.config.productionTip = false
Vue.prototype.$store = store
Vue.prototype.addDateRange = addDateRange
Vue.prototype.handleTree = handleTree
Vue.prototype.parseTime = parseTime
Vue.prototype.resetForm = resetForm
Vue.prototype.selectDictLabel = selectDictLabel
Vue.prototype.selectDictLabels = selectDictLabels
Vue.prototype.getDownloadUrl = getDownloadUrl
Vue.prototype.getDicts = getDicts
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化