From 492875622b39cb2cf04bbb9248b6ed0c52ced2df Mon Sep 17 00:00:00 2001 From: Derick Montague Date: Tue, 16 Mar 2021 19:52:33 -0500 Subject: Update text wrapping in documentation To meet best practices and standards for markdown, this commit updates all markdown files used for the VuePress documentation so that each line is limited to 80 characters. Signed-off-by: Derick Montague Change-Id: I0cadb33343ce1bc331dfefd096d8137a04c33604 --- docs/guide/quickstart/page-anatomy.md | 16 +++++++++++----- docs/guide/quickstart/store-anatomy.md | 21 +++++++++++++++------ 2 files changed, 26 insertions(+), 11 deletions(-) (limited to 'docs/guide/quickstart') diff --git a/docs/guide/quickstart/page-anatomy.md b/docs/guide/quickstart/page-anatomy.md index 120bf70b..fd49a8f5 100644 --- a/docs/guide/quickstart/page-anatomy.md +++ b/docs/guide/quickstart/page-anatomy.md @@ -1,5 +1,6 @@ # Page Anatomy -Single-file components (SFC) consist of a `template`, `script` and `style` block. +Single-file components (SFC) consist of a `template`, `script` and `style` +block. ## Template block When creating a new page, each template consists of at least 3 components: @@ -7,7 +8,8 @@ When creating a new page, each template consists of at least 3 components: - `` - `` -Learn more about the [page title](/guide/components/page-title)and [page section](/guide/components/page-section) components. +Learn more about the [page title](/guide/components/page-title)and [page +section](/guide/components/page-section) components. ```vue ``` ## Scripts block -In the scripts section, be sure to import the `PageTitle` and `PageSection` components and declare them in the `components` property. +In the scripts section, be sure to import the `PageTitle` and `PageSection` +components and declare them in the `components` property. -Importing `BContainer` in the [scripts block](#scripts-block) is not required as it is already registered globally. +Importing `BContainer` in the [scripts block](#scripts-block) is not required as +it is already registered globally. ```vue