App.vue
421 字节
<script setup>
import { onLaunch } from '@dcloudio/uni-app'
import useUserStore from '@/store/modules/user.js'
const userStore = useUserStore()
</script>
<style lang="scss">
/*每个页面公共css */
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-plus/index.scss";
view {
box-sizing: border-box;
}
image{
max-width: 100% !important;
}
</style>