摘要: ``` {{ props.text }} ``` ![](https://img2023.cnblogs.com/blog/3004543/202305/3004543-20230526145341623-1091930706.png) 阅读全文
posted @ 2023-05-26 14:53 yjxQWQ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: ``` ``` 阅读全文
posted @ 2023-05-26 14:04 yjxQWQ 阅读(60) 评论(0) 推荐(0) 编辑
摘要: ```async function findmaterial() { store.sourcematerialtableData = []; store.sourcematerialtableData2 = []; const { data } = await ApiService.get(RESO 阅读全文
posted @ 2023-05-26 11:18 yjxQWQ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 父元素里这样 ` ` DomainItem1元素里这样 ``` {{ t("addto") }} ``` ![](https://img2023.cnblogs.com/blog/3004543/202305/3004543-20230524161943459-1882560835.png) 补全输 阅读全文
posted @ 2023-05-24 16:21 yjxQWQ 阅读(348) 评论(0) 推荐(0) 编辑
摘要: # It does not have HTTP ok status. has been blocked by CORS policy: Response to preflight request doesn't pass access control check: It does not have 阅读全文
posted @ 2023-05-23 12:50 yjxQWQ 阅读(323) 评论(0) 推荐(0) 编辑
摘要: Custom elements in iteration require 'v-bind:key' directives. 这个错误提示 "Custom elements in iteration require 'v-bind:key' directives" 的意思是在循环中使用自定义元素时,需 阅读全文
posted @ 2023-05-18 15:21 yjxQWQ 阅读(926) 评论(0) 推荐(0) 编辑
摘要: 修改bug bug 那些tag要是没有内容的话全部加上 <el-tag v-if="scope.row.label">{{ scope.row.label }}</el-tag> 以及兴趣栏目其实是tag数组。并且表格不换行,宽度自定义 <el-table style="width: 100%" b 阅读全文
posted @ 2023-05-18 15:00 yjxQWQ 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 修改el-tag的样式 at-rule or selector expectedcss(css-ruleorselectorexpected) <style scoped> :deep .el-tag { margin-bottom: 1em; } </style> 如果没用的话 请检查你的路径是不 阅读全文
posted @ 2023-05-11 14:15 yjxQWQ 阅读(370) 评论(0) 推荐(0) 编辑
摘要: lang="ts" setup这种怎么写 props import { defineProps } from 'vue'; const props = defineProps({ tags: { type: Array as () => string[], default: () => [], }, 阅读全文
posted @ 2023-05-11 14:15 yjxQWQ 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Component name "tag" should always be multi-word. 这种错误通常是由于编码规范或代码风格指南中的命名规范没有被遵守所导致的。 vue中,我命名一个组件叫tag好像不符合规范 ,应该怎么命名? 在Vue中,如果你要命名一个组件,可以采用驼峰式命名法,即使 阅读全文
posted @ 2023-05-11 14:14 yjxQWQ 阅读(41) 评论(0) 推荐(0) 编辑