feat(about): 添加v-bind css变量测试功能

在about页面添加测试v-bind css变量的功能,用于验证动态样式绑定的可行性
This commit is contained in:
feige996
2025-08-27 17:29:13 +08:00
parent 1955e91800
commit 56eb1a084c

View File

@@ -73,6 +73,8 @@ onReady(() => {
onShow(() => {
console.log('onShow uniKuRoot exposeRef', uniKuRoot.value?.exposeRef)
})
const testBindCssVariable = ref('red')
</script>
<template root="uniKuRoot">
@@ -90,6 +92,9 @@ onShow(() => {
设置tabbarBadge
</button>
<RequestComp />
<view class="test-css text-center">
测试v-bind css变量
</view>
<view class="mb-6 h-1px bg-#eee" />
<view class="text-center">
<button type="primary" size="mini" class="w-160px" @click="gotoAlova">
@@ -122,10 +127,7 @@ onShow(() => {
<style lang="scss" scoped>
.test-css {
// 16rpx=>0.5rem
padding-bottom: 16rpx;
// mt-4=>1rem=>16px;
margin-top: 16px;
text-align: center;
color: v-bind(testBindCssVariable);
font-size: 24px;
}
</style>