随笔分类 - vue
摘要:<script setup lang="ts"> interface listType { id: number url: string } const data = [ { id: 1, url: '/_nuxt/assets/images/america.png' }, { id: 2, url
阅读全文
摘要:建议在项目的根目录下找的.vscode文件,在这个文件下创建settings.jsong写入如下配置: { // 1.在保存时格式化文件 "editor.formatOnSave": true, // 2.在保存时格式化文件使用prettier的方式格式化 "editor.defaultFormat
阅读全文
摘要:<!--菜单分配弹窗--> <el-dialog title="菜单分配" :visible.sync="menuDialogVisible" width="30%"> <el-tree :props="props" :data="menuData" node-key="id" ref="tree"
阅读全文