
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
VS Code 文件-》首选项-》设置搜索:files.associations点击在setting.json中编辑最后一行添加配置:"files.associations": {"*.vue": "html"}其他插件:Visual Studio IntelliCode(微软的AI智能代码推荐提示)目前我使用的一些插件:...
更改vue-element-admin主题颜色1.安装依赖包cnpm i element-theme -gcnpm i element-theme-chalk -g2:et -i// 将element-variables.scss文件移动到src下在该.sass文件下最后添加代码// 改变icon字体的路径,必须$--font-path:'~element-ui/lib/theme-chalk/f
问题: 默认情况下,一级导航下面只有1个二级导航的时候, 一级导航会不做显示, 仅展示二级导航.需求: 一级导航和二级导航都展示, 如下面右图仅需要在路由写上这行就行alwaysShow: true,// 全部是这样{path: "/management",component: Layout,redirect: "/management/toPayOrder",name: "OrderManage
uniapp中用v-html取出的图片设置自适应
vue中如果父组件想调用子组件的方法,可以在子组件中加上ref,然后通过this.$refs.ref.method调用,例如:父组件:<template><div @click="fatherMethod"><child ref="child"></child></div></template><script>im