增加自动导入插件,增加积分商城分包

This commit is contained in:
2025-12-09 10:25:39 +08:00
parent d02948a936
commit b76f80ece3
8 changed files with 540 additions and 31 deletions

32
scoreShop/index.vue Normal file
View File

@@ -0,0 +1,32 @@
<template>
<view class="container">
<view class="header">
<view class="title">{{ a }}</view>
</view>
</view>
</template>
<script setup>
const arr=ref([1,2,3])
reactive({
a:1
})
</script>
<style scoped>
.container {
flex-direction: column;
}
.header {
flex-direction: row;
justify-content: center;
align-items: center;
}
.title {
font-size: 32rpx;
font-weight: bold;
}
</style>