我在使用Vue的过程中,出现了Deprecation Warning: $weight: Passing a number without unit % (0) is deprecated.
时间: 2024-02-21 21:56:47 浏览: 292
这个警告是因为你在使用 `deep` 选项时,没有为其设置一个有效的单位。在Vue 2.x 中,`deep` 选项默认为 `false`,如果你不需要它,可以直接省略。如果你需要使用 `deep` 选项,请为其设置一个有效的单位,如 `%`。
例如,如果你想为 `deep` 选项设置为 `true`,你可以这样写:
```javascript
<template>
<div :style="{ '--weight': '100%' }">
<div v-deep>
// ...
</div>
</div>
</template>
<script>
export default {
// ...
};
</script>
<style>
div[v-deep] {
font-weight: var(--weight);
}
</style>
```
这样,你就可以避免出现 Deprecation Warning: $weight: Passing a number without unit % (0) is deprecated. 的警告了。
阅读全文