/src
--src
--pages
--app
--index.html
--index.vue
--main.js
--home
--index.html
--index.vue
--main.js
/vue.config.js
module.exports = {
pages: {
home: {
entry: './src/pages/home/main.js',
template: './src/pages/home/index.html',
filename: 'home.html',
title: '家',
},
app: {
entry: './src/pages/app/main.js',
template: './src/pages/app/index.html',
filename: 'app.html',
title: '应用',
},
},
};
npm run serve
浏览器访问:
localhost:8080/home
localhost:8080/app