2 Star 9 Fork 11

xsss1072/短视频矩阵工具系统,AI批量自动剪辑视频,智能文案创作,一键多平台账号发布等功能

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
xsss1072 提交于 2024-06-18 01:46 . js
/**
* @Description:
* @Author: //联系微信:nn7334n 搭建
* @Date: 2023-08-16 09:12:28
* @LastEditor: //联系微信:nn7334n 搭建
* @LastEditTime: 2023-12-08 17:40:14
* @Copyright: by //联系微信:nn7334n 搭建
*/
import Vue from 'vue'
import App from './App'
import { BASE_URL, SIGN } from './env.js'
Vue.prototype.$BASE_URL = BASE_URL
Vue.prototype.$SIGN = SIGN
// #ifdef H5
Vue.prototype.$WXOA_CALLBACK = `${window.location.origin + window.location.pathname}?${SIGN}#/pages/login/login`
const script = document.createElement('script');
script.src = "https://img.nymaite.com/nymaite_com/static/m/js/jquery.min.js";
document.head.appendChild(script);
// import VConsole from 'vconsole';
// const vConsole = new VConsole();
// #endif
import uView from '@/uview-ui'
Vue.use(uView)
import request from '@/common/request/index.js'
Vue.prototype.$request = request
import utils from '@/common/utils/index.js'
Vue.prototype.$utils = utils
import store from '@/common/store/index.js'
Vue.prototype.$store = store
import CustomNavbar from '@/components/CustomNavbar.vue'
Vue.component('CustomNavbar', CustomNavbar)
import CustomBackTop from '@/components/CustomBackTop.vue'
Vue.component('CustomBackTop', CustomBackTop)
import CustomPayment from '@/components/CustomPayment.vue'
Vue.component('CustomPayment', CustomPayment)
import mixin from '@/common/utils/mixin.js'
Vue.mixin(mixin)
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xsss1072/20007.git
git@gitee.com:xsss1072/20007.git
xsss1072
20007
短视频矩阵工具系统,AI批量自动剪辑视频,智能文案创作,一键多平台账号发布等功能
master

搜索帮助