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: README.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@
23
23
24
24
## Notable changes
25
25
26
+
* v2.1.4
27
+
* Added Nuxt module
26
28
* v2.1.0
27
29
* Added new option: [cloneAttributes](#configuration)
28
30
* v2.0.0
@@ -135,10 +137,10 @@ With [nuxt](https://nuxtjs.org/) - [nuxt.config.js](https://nuxtjs.org/faq/exten
135
137
136
138
module.exports= {
137
139
buildModules: [
138
-
['vue-svg-inline-loader/nuxt', { /* options */ }]
140
+
["vue-svg-inline-loader/nuxt", { /* options */ }]
139
141
],
140
142
// or
141
-
buildModules: ['vue-svg-inline-loader/nuxt'],
143
+
buildModules: ["vue-svg-inline-loader/nuxt"],
142
144
vueSvgInlineLoader: {
143
145
/* options */
144
146
}
@@ -257,14 +259,14 @@ Default options:
257
259
```
258
260
Explanation:
259
261
***inline.keyword:**
260
-
Defines keyword, which marks images you want to replace with inline SVG. Keyword has to be wrapped with whitespace characters (e.g. space).
262
+
Defines keyword, which marks images you want to replace with inline SVG. Keyword has to be wrapped with whitespace characters (e.g. space).
261
263
In case of some conflicts, you can also use data version of your keyword (e.g. `data-keyword`).
262
264
263
265
***inline.strict:**
264
266
In strict mode loader replaces only images with defined keyword. If strict mode is disabled, loader replaces all images.
265
267
266
268
***sprite.keyword:**
267
-
Defines keyword, which marks images you want to replace with inline SVG using inline sprites. Keyword has to be wrapped with whitespace characters (e.g. space).
269
+
Defines keyword, which marks images you want to replace with inline SVG using inline sprites. Keyword has to be wrapped with whitespace characters (e.g. space).
268
270
In case of some conflicts, you can also use data version of your keyword (e.g. `data-keyword`).
0 commit comments