mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 14:56:36 +08:00
Merge branch 'develop' of github.com:Tencent/tdesign-vue-next-starter into main
This commit is contained in:
commit
a7e228bcdc
|
@ -27,11 +27,11 @@
|
|||
"qrcode.vue": "^3.2.2",
|
||||
"qs": "^6.10.5",
|
||||
"tdesign-icons-vue-next": "^0.1.1",
|
||||
"tdesign-vue-next": "^0.16.0",
|
||||
"tdesign-vue-next": "0.17.3",
|
||||
"tvision-color": "^1.3.1",
|
||||
"vue": "^3.2.31",
|
||||
"vue-clipboard3": "^2.0.0",
|
||||
"vue-router": "^4.0.11"
|
||||
"vue-router": "~4.0.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^16.2.1",
|
||||
|
@ -63,7 +63,7 @@
|
|||
"stylelint-config-prettier": "~9.0.3",
|
||||
"stylelint-less": "1.0.1",
|
||||
"stylelint-order": "~4.1.0",
|
||||
"typescript": "~4.4.3",
|
||||
"typescript": "~4.7.4",
|
||||
"vite": "^2.7.1",
|
||||
"vite-plugin-mock": "^2.9.6",
|
||||
"vite-svg-loader": "^3.1.0",
|
||||
|
|
|
@ -20,7 +20,7 @@ const crumbs = computed(() => {
|
|||
breadcrumbArray.push({
|
||||
path,
|
||||
to: breadcrumbArray[idx - 1] ? `/${breadcrumbArray[idx - 1].path}/${path}` : `/${path}`,
|
||||
title: route.matched[idx].meta.title || path,
|
||||
title: route.matched[idx]?.meta?.title ?? path,
|
||||
});
|
||||
return breadcrumbArray;
|
||||
}, []);
|
||||
|
|
|
@ -24,8 +24,7 @@
|
|||
:pagination="pagination"
|
||||
:selected-row-keys="selectedRowKeys"
|
||||
:loading="dataLoading"
|
||||
:header-affixed-top="true"
|
||||
:header-affix-props="{ offsetTop, container: getContainer }"
|
||||
:header-affixed-top="{ offsetTop, container: getContainer }"
|
||||
@page-change="rehandlePageChange"
|
||||
@change="rehandleChange"
|
||||
@select-change="rehandleSelectChange"
|
||||
|
|
|
@ -73,8 +73,7 @@
|
|||
:hover="hover"
|
||||
:pagination="pagination"
|
||||
:loading="dataLoading"
|
||||
:header-affixed-top="true"
|
||||
:header-affix-props="{ offsetTop, container: getContainer }"
|
||||
:header-affixed-top="{ offsetTop, container: getContainer }"
|
||||
@page-change="rehandlePageChange"
|
||||
@change="rehandleChange"
|
||||
>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
margin-left: @spacer;
|
||||
}
|
||||
|
||||
.t-jumper-jumper {
|
||||
.t-jumper {
|
||||
.t-button + .t-button {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user