feat: 重构样式文件并添加新功能

- 将 main.css 重命名为 main.scss,并移动到 css 目录
- 添加 mixin.scss、vant.scss 和 variables.scss 新样式文件
- 更新样式导入路径
- 新增多个 CSS混入和变量,提升样式可维护性
- 调整部分样式规则,优化页面布局和视觉效果
This commit is contained in:
陈昱达
2025-03-03 15:20:00 +08:00
parent f6f5d82c0d
commit 2195eab28f
21 changed files with 6652 additions and 262 deletions

View File

@@ -20,8 +20,7 @@
icon-size="0.35rem"
>
<template #default>
<!-- {{it}}-->
<div v-html="it.option"></div>
<div class="van-cell" :contenteditable="active" v-html="it.option"></div>
</template>
</van-checkbox>
</template>
@@ -39,8 +38,13 @@ const props = defineProps({
stem: ''
};
}
},
active: {
type: Boolean,
default: false
}
});
const element = ref(props.element);
</script>
<style scoped lang="scss"></style>