File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export default {
45
45
</style>
46
46
```
47
47
48
- 更多细节可以在[ 使用预处理器] ( ./pre-processors.md ) 中找到。
48
+ 更多细节可以在[ 使用预处理器] ( ./guide/ pre-processors.md ) 中找到。
49
49
50
50
## 语言块
51
51
@@ -71,15 +71,15 @@ export default {
71
71
72
72
- 一个 ` .vue ` 文件可以包含多个 ` <style> ` 标签。
73
73
74
- - ` <style> ` 标签可以有 ` scoped ` 或者 ` module ` 属性 (查看 [ CSS 作用域] ( ./scoped-css.md ) 和 [ CSS Modules] ( ./css-modules.md ) ) 以帮助你将样式封装到当前组件。具有不同封装模式的多个 ` <style> ` 标签可以在同一个组件中混合使用。
74
+ - ` <style> ` 标签可以有 ` scoped ` 或者 ` module ` 属性 (查看 [ CSS 作用域] ( ./guide/ scoped-css.md ) 和 [ CSS Modules] ( ./guide /css-modules.md ) ) 以帮助你将样式封装到当前组件。具有不同封装模式的多个 ` <style> ` 标签可以在同一个组件中混合使用。
75
75
76
76
- 任何匹配 ` .css ` 文件 (或通过它的 ` lang ` 特性指定的扩展名) 的 webpack 规则都将会运用到这个 ` <style> ` 块的内容中。
77
77
78
78
### 自定义块
79
79
80
80
可以在 ` .vue ` 文件中添加额外的自定义块来实现项目的特定需求,例如 ` <docs> ` 块。` vue-loader ` 将会使用标签名来查找对应的 webpack loader 来应用在对应的块上。webpack loader 需要在 ` vue-loader ` 的选项 ` loaders ` 中指定。
81
81
82
- 更多细节,查看[ 自定义块] ( ./custom-blocks.md ) 。
82
+ 更多细节,查看[ 自定义块] ( ./guide/ custom-blocks.md ) 。
83
83
84
84
### Src 导入
85
85
You can’t perform that action at this time.
0 commit comments