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
A vue 2.x plugin that helps you bootstrap your Vue application by performing some common configurations.
7
+
A Vue 2.x plugin that helps you bootstrap your application by performing some common configurations.
8
8
9
9
Table of Contents
10
10
=================
@@ -66,7 +66,7 @@ After all the configurations are done, the file structure of your app will the l
66
66
### Prettier configuration
67
67
This an opt-in feature that you can enable when installing this plugin (go to the [getting started](#general) section if you want to know more about that).
68
68
69
-
If you chose Prettier as your code formatter, you might want to configure it with some additional options. This plugin adds a `.prettierrc.js` configuration file to your root folder with some default options. (This will only surt effect if the `@vue/eslint-config-prettier` plugin is installed on your project).
69
+
If you chose Prettier as your code formatter, you might want to configure it with some additional tweaks. This plugin adds a `.prettierrc.js` configuration file to your root folder with some default options. (It will only surt effect if the `@vue/eslint-config-prettier` plugin is installed on your project).
70
70
71
71
```js
72
72
// Default structure of the .prettierrc.js config file
@@ -89,7 +89,7 @@ After that, the vue-cli service will install the plugin and then ask you about s
89
89
-[Support for base components](#support-for-base-components)
Both of those features are **optional** but beware, the vue-cli service will try to add them by _default_. when the configurations are complete, the plugin will
92
+
Both of those features are **optional** but beware, the vue-cli service will try to add them by _default_. When the configurations are complete, the plugin will
93
93
notify you about what files were _created_, _modified_ or _deleted_.
94
94
95
95
### Using the BaseIcon component
@@ -119,7 +119,7 @@ Usage: vue-cli-service basec name [options]
119
119
Options:
120
120
121
121
--scaffold-button Generates a predefined base component for a button
122
-
--prefix The prefix for the name of the component. By default 'Base'
122
+
--prefix The prefix for the name of the component. By default 'Base'
123
123
```
124
124
125
125
The `name` is the name of the base component (without 'Base' or any other prefix).
@@ -172,7 +172,7 @@ This will have the same result as the previous example.
172
172
#### Using `basec` through the Vue UI
173
173
You can also use the `basec` command through the Vue user interface like so:
174
174
175
-
- In the UI, open your proyect and go to the `Tasks` section, in a newly created proyect there are going to be three basic commands: `serve`, `build` and `lint`. Vue Clean also adds a new command called `basec`.
175
+
- In the UI, open your project and go to the `Tasks` section, in a newly created project there are going to be three basic commands: `serve`, `build` and `lint`. Vue Clean also adds a new command called `basec`.
176
176
177
177
- You can configure the options for the `basec` command in the modal window opened by the `Parameters` button. In the following example we are replicating the `BaseDummy` component we created in the previous section.
0 commit comments