张智皓
2022-06-08 403e86b7f3655b0dabef82afe53fa0362a3d6e0b
fix: 🐛 tagsView 拼错
已修改4个文件
8 ■■■■ 文件已修改
src/layout/components/AppMain.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/layout/components/TagsView/ScrollPane.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/layout/components/TagsView/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/plugins/tab.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/layout/components/AppMain.vue
@@ -11,7 +11,7 @@
</template>
<script setup>
import useTagsViewStore from '@/store/modules/tagsview'
import useTagsViewStore from '@/store/modules/tagsView'
const tagsViewStore = useTagsViewStore()
const route = useRoute()
src/layout/components/TagsView/ScrollPane.vue
@@ -10,7 +10,7 @@
</template>
<script setup>
import useTagsViewStore from '@/store/modules/tagsview'
import useTagsViewStore from '@/store/modules/tagsView'
const tagAndTagSpacing = ref(4);
const { proxy } = getCurrentInstance();
src/layout/components/TagsView/index.vue
@@ -44,7 +44,7 @@
<script setup>
import ScrollPane from './ScrollPane'
import { getNormalPath } from '@/utils/ruoyi'
import useTagsViewStore from '@/store/modules/tagsview'
import useTagsViewStore from '@/store/modules/tagsView'
import useSettingsStore from '@/store/modules/settings'
import usePermissionStore from '@/store/modules/permission'
src/plugins/tab.js
@@ -1,4 +1,4 @@
import useTagsViewStore from '@/store/modules/tagsview'
import useTagsViewStore from '@/store/modules/tagsView'
import router from '@/router'
export default {