随笔分类 - vue
摘要:vue-cli 5.x 版本 使用--open 时,默认打开浏览器,会出现0.0.0.0:8080 ,解决办法: 在vue.config.js文件新增: const { defineConfig } = require('@vue/cli-service') module.exports = def
阅读全文
摘要:tab选项卡切换效果: 通过点击事件传入参数,然后通过v-show来进行切换显示 <template> <div class="box"> <div class="tab"> <span @click="cur = 0">首页</span> <span @click="cur = 1">广场</sp
阅读全文