chore: update deps

This commit is contained in:
kailong321200875
2022-06-05 20:39:16 +08:00
parent 1c339a6039
commit a4526d7cb4
9 changed files with 182 additions and 182 deletions

View File

@@ -65,7 +65,7 @@ const dialogStyle = computed(() => {
draggable
:close-on-click-modal="false"
>
<template #title>
<template #header>
<div class="flex justify-between">
<slot name="title">
{{ title }}
@@ -92,8 +92,8 @@ const dialogStyle = computed(() => {
<style lang="less">
.@{elNamespace}-dialog__header {
border-bottom: 1px solid var(--tags-view-border-color);
margin-right: 0 !important;
border-bottom: 1px solid var(--tags-view-border-color);
}
.@{elNamespace}-dialog__footer {

View File

@@ -1,6 +1,6 @@
import type { App } from 'vue'
// import type { App } from 'vue'
import { Icon } from './Icon'
export const setupGlobCom = (app: App<Element>): void => {
export const setupGlobCom = (app: any): void => {
app.component('Icon', Icon)
}