Vue Single File Component binding data-v-xxxxxxxx to generated elements(Vue单文件组件绑定data-v-xxxxxxxx到生成的元素)
问题描述
我正在构建一个 Vue 组件作为单个文件组件:
<模板><div class="chart"></div></模板><脚本>从'd3'导入*作为d3;导出默认{数据() {返回 {数据:[4、8、15、16、23、42],};},挂载(){d3.select('.chart').selectAll('div').data(这个.data).进入().append('div').style('width', d => `${10 * d}px`).text(d => d);},};</脚本><style lang="scss" 作用域>.图表 {分区 {背景颜色:钢蓝;白颜色;字体:10px 无衬线;边距:1px;填充:3px;文本对齐:右;}}</风格>
使用 webpack 处理后,CSS 呈现如下:
<style type="text/css">.chart div[数据-v-xxxxxxxx] {背景颜色:钢蓝;白颜色;字体:10px 无衬线;边距:1px;填充:3px;文本对齐:右;}</风格>
但 HTML 显示为:
我正在使用 D3 生成子 <div>
s.我发现 data-v-xxxxxxxx
没有绑定到生成的元素.如果我在原始模板中包含子 <div>
s 而不是生成它们,它们每个都有 data-v-xxxxxxxx
属性并且样式按预期应用
我认为根节点的任何后代,无论是包含在模板中还是生成的,都应该绑定到范围 CSS 的规则.有什么办法可以强制吗?
解决方案 新版本的 vue-loader
(从版本 12.2.0 开始)允许您使用深度作用域"css.你需要这样使用它:
<块引用><style scoped>
现在支持可以影响子级的深度"选择器使用 >>>
组合子的组件:
.foo >>>.bar { 颜色:红色;}
会被编译成:
.foo[data-v-xxxxxxx] .bar { 颜色:红色;}
vue-loader发布页面的更多信息代码>
I'm building a Vue component as a Single File Component:
<template>
<div class="chart"></div>
</template>
<script>
import * as d3 from 'd3';
export default {
data() {
return {
data: [4, 8, 15, 16, 23, 42],
};
},
mounted() {
d3.select('.chart')
.selectAll('div')
.data(this.data)
.enter()
.append('div')
.style('width', d => `${10 * d}px`)
.text(d => d);
},
};
</script>
<style lang="scss" scoped>
.chart {
div {
background-color: steelblue;
color: white;
font: 10px sans-serif;
margin: 1px;
padding: 3px;
text-align: right;
}
}
</style>
After processing with webpack, the CSS is rendered like so:
<style type="text/css">
.chart div[data-v-xxxxxxxx] {
background-color: steelblue;
color: white;
font: 10px sans-serif;
margin: 1px;
padding: 3px;
text-align: right;
}
</style>
But the HTML shows up as:
<div data-v-xxxxxxxx class="chart">
<div style="width: 40px;">4</div>
<div style="width: 80px;">8</div>
<div style="width: 150px;">15</div>
<div style="width: 160px;">16</div>
<div style="width: 230px;">23</div>
<div style="width: 420px;">42</div>
</div>
I'm using D3 to generate the child <div>
s. I've found that data-v-xxxxxxxx
isn't bound to generated elements. If I include the child <div>
s in the original template rather than generating them, they each have the data-v-xxxxxxxx
attribute and the styles apply as expected
I would think that any descendant of the root node, whether included in the template or generated, should be bound to the rules of the scoped CSS. Is there any way to force this?
解决方案 New version of vue-loader
(from version 12.2.0) allows you to use "deep scoped" css. You need to use it that way:
<style scoped>
now support "deep" selectors that can affect child
components using the >>>
combinator:
.foo >>> .bar { color: red; }
will be compiled into:
.foo[data-v-xxxxxxx] .bar { color: red; }
More informations on the release page of vue-loader
这篇关于Vue单文件组件绑定data-v-xxxxxxxx到生成的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Vue单文件组件绑定data-v-xxxxxxxx到生成的元素
基础教程推荐
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01