Skip to content

Commit 87de407

Browse files
committed
Updated README.md
1 parent f7872c8 commit 87de407

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
## Notable changes
2525

26+
* v2.1.4
27+
* Added Nuxt module
2628
* v2.1.0
2729
* Added new option: [cloneAttributes](#configuration)
2830
* v2.0.0
@@ -135,10 +137,10 @@ With [nuxt](https://nuxtjs.org/) - [nuxt.config.js](https://nuxtjs.org/faq/exten
135137

136138
module.exports = {
137139
buildModules: [
138-
['vue-svg-inline-loader/nuxt', { /* options */ }]
140+
[ "vue-svg-inline-loader/nuxt", { /* options */ } ]
139141
],
140142
// or
141-
buildModules: ['vue-svg-inline-loader/nuxt'],
143+
buildModules: [ "vue-svg-inline-loader/nuxt" ],
142144
vueSvgInlineLoader: {
143145
/* options */
144146
}
@@ -257,14 +259,14 @@ Default options:
257259
```
258260
Explanation:
259261
* **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).
261263
In case of some conflicts, you can also use data version of your keyword (e.g. `data-keyword`).
262264

263265
* **inline.strict:**
264266
In strict mode loader replaces only images with defined keyword. If strict mode is disabled, loader replaces all images.
265267

266268
* **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).
268270
In case of some conflicts, you can also use data version of your keyword (e.g. `data-keyword`).
269271

270272
* **sprite.strict:**

0 commit comments

Comments
 (0)