Vue CLI plugin for multiple file component projects.
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:
└── App
├── App.css
├── App.html
└── App.js
vue-cli-plugin-mfc
helps you to construct your project with MFCs by using vue-template-loader on the internal webpack config in Vue CLI service.
# make sure you already installed @vue/cli
$ vue add mfc
MIT