You can define custom language blocks inside `*.vue` files. Loaders applied for a custom block are matched based on the `lang` attribute of the block, the block's tag name, and the rules in your webpack config.
@@ -19,15 +19,15 @@ You can also use `resourceQuery` to match a rule against a custom block with no
}
```
If a matching rule is found for a custom block, it will be processed; otherwise the custom block will be silently ignored.
如果找到了一个自定义块的匹配规则,它将会被处理,否则该自定义块会被默默忽略。
Additionally, if the custom block exports a function as the final result after being processed by all the matching loaders, that function will be called with the component of the `*.vue` file as a parameter.