初始化

This commit is contained in:
魏啾
2024-03-21 15:43:18 +08:00
parent 08c5d22de6
commit fab2d5f480
534 changed files with 76501 additions and 1 deletions

29
pages/index/lange.vue Normal file
View File

@@ -0,0 +1,29 @@
<template>
<view class="dark-bg" :style="theme">
<view class="bg-test"></view>
</view>
</template>
<script>
export default {
data() {
return {}
},
computed: {
theme() {
return this.$store.getters.theme
},
},
}
</script>
<style scoped lang="scss">
.bg-test {
width: 300px;
height: 160px;
border-radius: 10px;
background-color: var(--bg-color-button);
}
</style>