chore: update deps

This commit is contained in:
张传龙
2023-07-27 14:25:07 +08:00
parent 0e764ac748
commit c504ad065c
7 changed files with 4156 additions and 5361 deletions

View File

@@ -18,7 +18,8 @@
<li
v-for="(item, index) in tab.messages"
:key="index"
class="flex-col border-t border-gray-200 py-12"
class="flex-col py-12"
border-t="1 solid gray-200"
:style="index > 0 ? '' : 'border: none;'"
>
<span mb-4 text-ellipsis>{{ item.content }}</span>

View File

@@ -13,7 +13,8 @@
<article flex-col flex-1 overflow-hidden>
<header
class="flex items-center border-b bg-white px-15 bc-eee"
border-b="1 solid #eee"
class="flex items-center bg-white px-15"
dark="bg-dark border-0"
:style="`height: ${header.height}px`"
>

View File

@@ -14,20 +14,20 @@
</p>
<div mt-20 w-350 f-c-c flex-col>
<div flex flex-wrap justify-around b-1 rounded-10 p-10 bc-ccc>
<div m-20 h-50 w-50 f-c-c b-1 rounded-5 p-10>
<div flex flex-wrap justify-around rounded-10 p-10 border="1 solid #ccc">
<div m-20 h-50 w-50 f-c-c rounded-5 p-10 border="1 solid">
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
</div>
<div m-20 h-50 w-50 flex justify-between b-1 rounded-5 p-10>
<div m-20 h-50 w-50 flex justify-between rounded-5 p-10 border="1 solid">
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
<span h-6 w-6 self-end rounded-3 bg-black dark:bg-white />
</div>
<div m-20 h-50 w-50 flex justify-between b-1 rounded-5 p-10>
<div m-20 h-50 w-50 flex justify-between rounded-5 p-10 border="1 solid">
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
<span h-6 w-6 self-center rounded-3 bg-black dark:bg-white />
<span h-6 w-6 self-end rounded-3 bg-black dark:bg-white />
</div>
<div m-20 h-50 w-50 flex justify-between b-1 rounded-5 p-10>
<div m-20 h-50 w-50 flex justify-between rounded-5 p-10 border="1 solid">
<div flex-col justify-between>
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
@@ -37,7 +37,7 @@
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
</div>
</div>
<div m-20 h-50 w-50 flex-col items-center justify-between b-1 rounded-5 p-10>
<div m-20 h-50 w-50 flex-col items-center justify-between rounded-5 p-10 border="1 solid">
<div w-full flex justify-between>
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
@@ -48,7 +48,7 @@
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
</div>
</div>
<div m-20 h-50 w-50 flex-col justify-between b-1 rounded-5 p-10>
<div m-20 h-50 w-50 flex-col justify-between rounded-5 p-10 border="1 solid">
<div w-full flex justify-between>
<span h-6 w-6 rounded-3 bg-black dark:bg-white />
<span h-6 w-6 rounded-3 bg-black dark:bg-white />

View File

@@ -18,7 +18,7 @@
</template>
<script setup>
import MdEditor from 'md-editor-v3'
import { MdEditor } from 'md-editor-v3'
import 'md-editor-v3/lib/style.css'
defineOptions({ name: 'MDEditor' })

View File

@@ -1,9 +1,8 @@
<template>
<AppPage>
<div h-full flex-col border-1 bc-ccc dark:bg-dark>
<div class="h-full flex-col" border="1 solid #ccc" dark:bg-dark>
<WangToolbar
border-b
bc-ccc
border-b="1px solid #ccc"
:editor="editorRef"
:default-config="toolbarConfig"
mode="default"