Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 421ef1d

Browse files
committed
Update docs
1 parent eae3ad8 commit 421ef1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ window.$docsify = {
634634

635635
- type: `Object`
636636

637-
Registers Vue components using the component name as the key with an object containing Vue options as the value.
637+
Registers Vue components using the component name as the key with an object containing Vue options as the value. Component data is not shared and changes will not persist as users navigate the site.
638638

639639
```js
640640
window.$docsify = {
@@ -701,7 +701,7 @@ window.$docsify = {
701701

702702
- type: `Object`
703703

704-
Specifies Vue mount elements and their associated options. Mount elements are specified using a [CSS selector](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors) as the key with an object containing Vue options as their value.
704+
Specifies Vue mount elements and their associated options. Mount elements are specified using a [CSS selector](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors) as the key with an object containing Vue options as their value. Docsify will mount the first matching element in the main content area (`#main, .markdown-section`) each time a new page is loaded.
705705

706706
```js
707707
window.$docsify = {

docs/vue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ window.$docsify = {
265265

266266
## Components
267267

268-
Use `vueComponents` to register Vue components using the component name as the key with an object containing Vue options as the value. Components data is not shared and changes will not persist as users navigate the site.
268+
Use `vueComponents` to register Vue components using the component name as the key with an object containing Vue options as the value. Component data is not shared and changes will not persist as users navigate the site.
269269

270270
```js
271271
window.$docsify = {

0 commit comments

Comments
 (0)