You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/spec.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ export default {
45
45
</style>
46
46
```
47
47
48
-
More details can be found in [Using Pre-Processors](./pre-processors.md).
48
+
More details can be found in [Using Pre-Processors](./guide/pre-processors.md).
49
49
50
50
## Language Blocks
51
51
@@ -71,15 +71,15 @@ More details can be found in [Using Pre-Processors](./pre-processors.md).
71
71
72
72
- A single `*.vue` file can contain multiple `<style>` tags.
73
73
74
-
- A `<style>` tag can have `scoped` or `module` attributes (see [Scoped CSS](./scoped-css.md) and [CSS Modules](./css-modules.md)) to help encapsulate the styles to the current component. Multiple `<style>` tags with different encapsulation modes can be mixed in the same component.
74
+
- A `<style>` tag can have `scoped` or `module` attributes (see [Scoped CSS](./guide/scoped-css.md) and [CSS Modules](./guide/css-modules.md)) to help encapsulate the styles to the current component. Multiple `<style>` tags with different encapsulation modes can be mixed in the same component.
75
75
76
76
- Any webpack rules that match against `.css` files (or the extension specified by the `lang` attribute) will be applied to contents in the `<style>` blocks as well.
77
77
78
78
### Custom Blocks
79
79
80
80
Additional custom blocks can be included in a `*.vue` file for any project specific needs, for example a `<docs>` block. `vue-loader` will use the tag name to look up which webpack loaders should be applied to the contents of the section. The webpack loaders should be specified in the `loaders` section of `vue-loader` options.
81
81
82
-
For mode details, see [Custom Blocks](./custom-blocks.md).
82
+
For mode details, see [Custom Blocks](./guide/custom-blocks.md).
0 commit comments