vue3.2中style使用v-bind

vue3.2中style使用v-bind

自我记录

这个功能真的是 太 NB 了!!!!
官网地址:https://cn.vuejs.org/api/sfc-css-features.html#v-bind-in-css
vue3.2中style使用v-bind_第1张图片
vue3.2中style使用v-bind_第2张图片
vue3.2中style使用v-bind_第3张图片

<script setup lang="ts">
const { safeAreaInsets } = uni.getSystemInfoSync()
</script>

<template>
  <view class="settings-page"></view>
</template>

<style lang="scss" scoped>
.settings-page {
  width: 100%;
  height: 100vh;
  background-color: red;
  padding-bottom: v-bind("safeAreaInsets?.bottom + 'px'");
}
</style>

太方便了!!!

你可能感兴趣的:(vue3.0,前端,uniApp,vue.js,uni-app,小程序)