├── .gitignore ├── LICENSE ├── README.md ├── meta.json ├── package.json └── template ├── dist └── example.js ├── entry.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src └── example.vue └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/README.md -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "schema": {} 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/dist/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/dist/example.js -------------------------------------------------------------------------------- /template/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/entry.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/package-lock.json -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/package.json -------------------------------------------------------------------------------- /template/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('autoprefixer') 4 | ] 5 | }; -------------------------------------------------------------------------------- /template/src/example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/src/example.vue -------------------------------------------------------------------------------- /template/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonnieSan/vue-browser-sfc/HEAD/template/webpack.config.js --------------------------------------------------------------------------------