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
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,26 @@
1
-
# template-node
1
+
# Vue CLI Plugin MFC
2
2
3
-
A project template for Node.js libraries.
3
+
Vue CLI plugin for multiple file component projects.
4
+
5
+
## What is MFC (Multiple File Component)?
6
+
7
+
It is opposite thing of single file component (SFC). While SFC includes all things in one file (`.vue` file), MFC splits a component in separated files:
8
+
9
+
```
10
+
└── App
11
+
├── App.css
12
+
├── App.html
13
+
└── App.js
14
+
```
15
+
16
+
`vue-cli-plugin-mfc` helps you to construct your project with MFCs by using [vue-template-loader](https://github.com/ktsn/vue-template-loader) on the internal webpack config in Vue CLI service.
0 commit comments