Vue高版本中一些新特性的使用详解

一、深度作用选择器( >>> )

严格来说,这个应该是vue-loader的功能。”vue-loader”: “^12.2.0”

在项目开发中,如果业务比较复杂,特别像中台或B端功能页面都不可避免的会用到第三方组件库,产品有时会想对这些组件进行一些UI方面的定制。如果这些组件采用的是有作用域的CSS,父组件想要定制第三方组件的样式就比较麻烦了。

深度作用选择器( >>> 操作符)可以助你一臂之力。

<template> <div> <h1> 如果你希望 scoped 样式中的一个选择器能够作用得“更深”,例如影响子组件,你可以使用 >>> 操作 </h1> </div> </template> <script> export default { name: 'child', data() { return { } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> .child-title { font-size: 12px; } </style>

上面的child组件中 .child-title 的作用域CSS设定字体大小为12px,现在想在父组件中定制为大小20px,颜色为红色。

<template> <div> <child></child> </div> </template> <script> import Child from './child'; export default { name: 'parent', components:{ Child }, data() { return { } } } </script> <style> .parent-custom >>> .child-title { font-size:20px; color: red; } </style> 效果妥妥的。但是别高兴太早,注意到上面的style使用的是纯css语法,如果采用less语法,你可能会收到一条webpack的报错信息。 <style lang="less"> .parent-custom { >>> .child-title { font-size:20px; color: red; } } </style>

ERROR in ./~/css-loader!./~/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-960c5412","scoped":false,"hasInlineConfig":false}!./~/postcss-loader!./~/less-loader!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/parent.vue Module build failed: Unrecognised input @ /src/components/parent.vue (line 22, column 6) near lines: .parent-custom { >>> .child-title { font-size:20px;

上面的报错信息其实是less语法不认识 >>>。(less的github issue上有人提议支持>>>操作符,但本文使用的v2.7.3会有这个问题)

解决方案是采用的less的转义(scaping)和变量插值(Variable Interpolation)

<style lang="less"> @deep: ~'>>>'; .parent-custom { @{deep} .child-title { font-size:20px; color: red; } } </style>

对于其他的css预处理器,因为没怎么用,不妄加评论,照搬一下文档的话。

有些像 Sass 之类的预处理器无法正确解析 >>>。这种情况下你可以使用 /deep/ 操作符取而代之——这是一个 >>> 的别名,同样可以正常工作。

二、组件配置项inheritAttrs、组件实例属性$attrs和$listeners

2.4.0新增

组件配置项 inheritAttrs

我们都知道假如使用子组件时传了a,b,c三个prop,而子组件的props选项只声明了a和b,那么渲染后c将作为html自定义属性显示在子组件的根元素上。

如果不希望这样,可以设置子组件的配置项 inheritAttrs:false,根元素就会干净多了。

<script> export default { name: 'child', props:['a','b'], inheritAttrs:false } </script>

组件实例属性$attrs和$listeners

先看看vm.$attrs文档上是怎么说的

vm.$attrs

类型:{ [key: string]: string }

只读

包含了父作用域中不作为 prop 被识别 (且获取) 的特性绑定 (class 和 style 除外)。当一个组件没有声明任何 prop 时,这里会包含所有父作用域的绑定 (class 和 style 除外),并且可以通过 v-bind=”$attrs” 传入内部组件——在创建高级别的组件时非常有用。

归纳起来就是两点:

vm.$attrs是组件的内置属性,值是父组件传入的所有prop中未被组件声明的prop(class和style除外)。

还是以前面的child组件举例

//parent.vue <template> <div> <child a="a" b="b" c="c"></child> </div> </template> //child.vue <script> export default { name: 'child', props:['a','b'], inheritAttrs:false, mounted(){ //控制台输出: //child:$attrs: {c: "c"} console.log('child:$attrs:',this.$attrs); } } </script>

组件可以通过在自己的子组件上使用v-bind=”$attrs”,进一步把值传给自己的子组件。也就是说子组件会把$attrs的值当作传入的prop处理,同时还要遵守第一点的规则。

//parent.vue <template> <div> <child a="a" b="b" c="c"></child> </div> </template> //child.vue <template> <div> <grand-child v-bind="$attrs" d="d"></grand-child> </div> </template> <script> export default { name: 'child', props:['a','b'], inheritAttrs:false } </script> //grandchild.vue <script> export default { name: 'grandchild', props:[], //props:['c'], inheritAttrs:false, mounted(){ //控制台输出: //grandchild:$attrs: {d: "d", c: "c"} console.log('grandchild:$attrs:',this.$attrs); //如果props:['c'] //控制台输出: //grandchild:$attrs: {d: "d"} }, } </script>

vm.$listeners

类型:{ [key: string]: Function | Array }

只读

包含了父作用域中的 (不含 .native 修饰器的) v-on 事件监听器。它可以通过 v-on=”$listeners” 传入内部组件——在创建更高层次的组件时非常有用。

归纳起来也是两点:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/20e34eedb0e1b2c67fccb3e22c99b477.html