由于scroll-view的fixed问题,我不得不使用root-portal
由于我有很多预设的工具类,大多都引用了css变量,但我发现在root-portal内部dom是无法调用外部的css变量的
<page style="--test-bg: blue;">
<view style="--test-color: red;">
<root-portal>
<view style="color: var(--test-color);">测试文字</view>
<view style="background-color: var(--test-bg);">测试背景</view>
</root-portal>
</view>
</page>