2 Star 7 Fork 1

cshaptx4869/vue3-uniapp-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 704 Bytes
一键复制 编辑 原始数据 按行查看 历史
cshaptx4869 提交于 2024-10-23 15:27 . refactor: :recycle:工具配置文件重命名
<script setup>
import {
onLaunch,
onShow,
onHide,
onError,
onPageNotFound,
} from "@dcloudio/uni-app";
import { checkForUpdate } from "@/utils";
onLaunch(() => {
console.log("App Launch");
// #ifdef MP-WEIXIN
checkForUpdate();
// #endif
});
onShow(() => {
console.log("App Show");
});
onHide(() => {
console.log("App Hide");
});
onError((error) => {
console.error("App Error", error);
});
onPageNotFound((res) => {
console.error("PageNotFound", res);
uni.redirectTo({
url: "/pages/404/404",
});
});
</script>
<style lang="scss">
/* 每个页面公共css */
page {
height: 100%;
}
/* uv-ui基础样式 */
@import "@/uni_modules/uv-ui-tools/index.scss";
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cshaptx4869/vue3-uniapp-template.git
git@gitee.com:cshaptx4869/vue3-uniapp-template.git
cshaptx4869
vue3-uniapp-template
vue3-uniapp-template
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385