App.vue 486 Bytes
<script setup>
// 错误:import { onLaunch } from 'vue';
// 正确:从 uni-app 导入应用生命周期钩子
import { onLaunch } from '@dcloudio/uni-app';

onLaunch(() => {
  console.log('App Launch');
});
</script>

<style lang="scss">
/* 注意要写在第一行,注意不能引入至uni.scss,同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-plus/index.scss";

/* 你的全局样式 */
page {
  background-color: #f8f8f8;
  height: 100%;
}
</style>