Skip to content

Commit

Permalink
fix: 修复前端部分拼写错误
Browse files Browse the repository at this point in the history
1.分析页示例:font-size: 14 => font-size: 14px (arco-design/arco-design-pro-vue#322)
2.Chat 组件:options => option (arco-design/arco-design-pro-vue#296)
3.tab-bar:useAppStore => useTabBarStore (arco-design/arco-design-pro-vue#272)
  • Loading branch information
Charles7c committed Sep 4, 2023
1 parent 32904b5 commit 62021f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions continew-admin-ui/src/components/chart/index.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<VCharts
v-if="renderChart"
:option="options"
:option="option"
:autoresize="autoResize"
:style="{ width, height }"
/>
Expand All @@ -13,7 +13,7 @@
// import { useAppStore } from '@/store';
defineProps({
options: {
option: {
type: Object,
default() {
return {};
Expand Down
4 changes: 2 additions & 2 deletions continew-admin-ui/src/store/modules/tab-bar/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const formatTag = (route: RouteLocationNormalized): TagProps => {

const BAN_LIST = [REDIRECT_ROUTE_NAME];

const useAppStore = defineStore('tabBar', {
const useTabBarStore = defineStore('tabBar', {
state: (): TabBarState => ({
cacheTabList: new Set([DEFAULT_ROUTE_NAME]),
tagList: [DEFAULT_ROUTE],
Expand Down Expand Up @@ -71,4 +71,4 @@ const useAppStore = defineStore('tabBar', {
},
});

export default useAppStore;
export default useTabBarStore;
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
.title-fix {
margin: 0 0 12px 0;
font-size: 14;
font-size: 14px;
}
:deep(.section-title) {
margin: 0 0 12px 0;
Expand Down

0 comments on commit 62021f8

Please sign in to comment.