相思资源网 Design By www.200059.com
为何需要配置多页面"color: #ff0000">需求
首页显示各个应用名称,点击进去各自应用
实现
使用vue/cli生成一个vue项目
npm install -g @vue/cli
个人不建议直接全局安装,因为可能会对其他项目造成影响,所以会选择加上 -D
来进行本地安装
然后 vue create project-name
(使用本地安装的记得加上 npx
)
成功创建之后,我们看看当前的目录结构
这里我们需要重构一下我们的目录 让他更可观
配置vue.config.js
let path = require('path') let glob = require('glob') // 用于筛选文件 // 工厂函数 - 配置pages实现多页面获取某文件夹下的html与js function handleEntry(entry) { let entries = {} let entryBaseName = '' let entryPathName = '' let entryTemplate = '' let applicationName = '' glob.sync(entry).forEach(item => { console.log('!!!', item) entryBaseName = path.basename(item, path.extname(item)) console.log('entryBaseName:', entryBaseName) entryTemplate = item.split('/').splice(-3) console.log('entryTemplate:', entryTemplate) entryPathName = entryBaseName // 正确输出js和html的路径 console.log('entryPathName', entryPathName) entries[entryPathName] = { entry: 'src/' + entryTemplate[0] + '/' + entryTemplate[1] + '/' + entryTemplate[1] + '.js', template: 'src/' + entryTemplate[0] + '/' + entryTemplate[1] + '/' + entryTemplate[2], title: entryTemplate[2], filename: entryTemplate[2] } }) return entries } let pages = handleEntry('./src/applications/**"production" "./" : "/", productionSourceMap: false, // 入口设置 pages, devServer: { index: '/', // 运行时,默认打开application1页面 // 告诉dev-server在服务器启动后打开浏览器,将其设置true为打开默认浏览器 open: true, host: 'localhost', port: 8080, https: false, hotOnly: false, // 配置首页 入口链接 before: app => { app.get('/', (req, res, next) => { for (let i in pages) { res.write(`<a target="_self" href="/${i}">/${i}</a></br>`); } res.end() }); } } }
application1.js import Vue from 'vue' import Application1 from './application1.vue' import router from './router' import store from './vuex' Vue.config.productionTip = false new Vue({ router, store, render: h => h(Application1) }).$mount('#app')
application1.vue <template> <div id="app"> <a class='tips' href='application2.html'> Hello Im Application1,Clike me can go to Application2 </a> </div> </template> <style lang="less"> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; } .tips{ display: flex; justify-content: center; align-items:center; color:lightsalmon; font-size:20px; font-weight:bold; } </style>
application1.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <link rel="icon" href="<%= BASE_URL %>favicon.ico"> <title>Application1</title> </head> <body> <noscript> <strong>We're sorry but test-my-ui doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> </noscript> <div id="app"></div> <!-- built files will be auto injected --> </body> </html>
同理 application2应用也这样配置 运行
npm run serve
运行
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无VUE.CLI4.0配置多页面入口的实现的评论...