diff --git a/packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts b/packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts index 12f4b2e624..83b62c9207 100644 --- a/packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts +++ b/packages/devui-vue/devui/editor-md/src/plugins/checkbox.ts @@ -1,4 +1,4 @@ -import * as _ from 'lodash'; +import { extend } from 'lodash'; const checkboxReplace = function (md: any, options: any) { let lastId: number; @@ -9,7 +9,7 @@ const checkboxReplace = function (md: any, options: any) { divClass: 'checkbox', idPrefix: 'checkbox', }; - options = _.extend(defaults, options); + options = extend(defaults, options); const pattern = /\[(X|\s|\_|\-)\]\s(.*)/i; const createTokens = function (checked: any, label: any, Token: any) { let token; diff --git a/packages/devui-vue/devui/fullscreen/index.ts b/packages/devui-vue/devui/fullscreen/index.ts index 20c7ba38fd..4983aa21b8 100644 --- a/packages/devui-vue/devui/fullscreen/index.ts +++ b/packages/devui-vue/devui/fullscreen/index.ts @@ -8,6 +8,7 @@ export { Fullscreen }; export default { title: 'Fullscreen 全屏', category: '通用', + status: '100%', install(app: App): void { app.component(Fullscreen.name, Fullscreen); }, diff --git a/packages/devui-vue/package.json b/packages/devui-vue/package.json index c615bc7510..79505c520e 100644 --- a/packages/devui-vue/package.json +++ b/packages/devui-vue/package.json @@ -1,6 +1,6 @@ { "name": "vue-devui", - "version": "1.6.1", + "version": "1.6.2", "license": "MIT", "description": "DevUI components based on Vite and Vue3", "keywords": [