1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

删除多余文件;小修改

This commit is contained in:
程序员小墨 2023-04-25 02:29:19 +08:00
parent 2887104bb3
commit bc5de2f4d6
2 changed files with 0 additions and 23 deletions

View File

@ -42,9 +42,6 @@
Java代码中小程序AppID、密钥处理小程序代码中小程序AppID处理 Java代码中小程序AppID、密钥处理小程序代码中小程序AppID处理
# TODO 全部域名配置的地方添加 FIXME 环境配置
# VSCode 全局搜索排除 # VSCode 全局搜索排除
node_modules,.git,.idea,target,out,./postman-collection,@deprecated node_modules,.git,.idea,target,out,./postman-collection,@deprecated

View File

@ -1,20 +0,0 @@
import { createApp } from 'vue'
import { setGlobalDataPlugin } from '@tarojs/taro'
import './app.css'
const App = createApp({
onShow(options) { },
// 入口组件不需要实现 render 方法,即使实现了也会被 taro 所覆盖
})
// 全局变量 refer: https://docs.taro.zone/docs/come-from-miniapp#%E5%85%A8%E5%B1%80%E5%8F%98%E9%87%8F
App.use(setGlobalDataPlugin, {
globalData: {
debugMode: true, // 是否展示调试内容
baseUrl: true
? "https://epp.only4.work"
: "http://localhost", // 不带最后的 /
}
})
export default App