Skip to content

Commit

Permalink
feat:Panel tab style
Browse files Browse the repository at this point in the history
  • Loading branch information
ianxinnew committed Jul 30, 2024
1 parent d1d3875 commit d0f9de8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/toolbars/breadcrumb/src/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import { reactive, computed } from 'vue'
import { Breadcrumb, BreadcrumbItem, Button } from '@opentiny/vue'
import { useBreadcrumb, useLayout } from '@opentiny/tiny-engine-meta-register'
import lock from '../../lock'
import lock from '@opentiny/tiny-engine-toolbar-checkinout'
import { BlockDeployDialog } from '@opentiny/tiny-engine-common'
export default {
components: {
Expand All @@ -33,7 +33,7 @@ export default {
TinyButton: Button
},
setup() {
const PLUGINSID = {
const PLUGINS_ID = {
PAGEID: 'engine.plugins.appmanage',
BLOCKID: 'engine.plugins.blockmanage'
}
Expand Down Expand Up @@ -70,7 +70,7 @@ export default {
})
const open = () => {
plugins.render = breadcrumbData.value[0] === CONSTANTS.PAGETEXT ? PLUGINSID.PAGEID : PLUGINSID.BLOCKID
plugins.render = breadcrumbData.value[0] === CONSTANTS.PAGETEXT ? PLUGINS_ID.PAGEID : PLUGINS_ID.BLOCKID
}
return {
Expand Down

0 comments on commit d0f9de8

Please sign in to comment.