diff --git a/src/components/NaiveProvider.vue b/src/components/NaiveProvider.vue
index b99254d..e487ddb 100644
--- a/src/components/NaiveProvider.vue
+++ b/src/components/NaiveProvider.vue
@@ -1,12 +1,9 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
diff --git a/src/components/index.ts b/src/components/index.ts
index 8dc1afd..846c83e 100644
--- a/src/components/index.ts
+++ b/src/components/index.ts
@@ -1,3 +1,4 @@
+import NaiveProvider from './NaiveProvider.vue'
import SvgIcon from './SvgIcon.vue'
-export { SvgIcon }
+export { NaiveProvider, SvgIcon }
diff --git a/src/main.ts b/src/main.ts
index 465512a..3305631 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,9 +1,8 @@
import 'virtual:svg-icons-register'
-import './styles/css/tailwind.css'
-import './styles/less/global.less'
+import './styles/tailwind.css'
+import './styles/global.css'
import { createApp } from 'vue'
-import { createPinia } from 'pinia'
import App from './App.vue'
function injectMeta() {
@@ -15,7 +14,6 @@ function injectMeta() {
function bootstrap() {
const app = createApp(App)
injectMeta()
- app.use(createPinia())
app.mount('#app')
}
diff --git a/src/styles/less/global.less b/src/styles/global.css
similarity index 100%
rename from src/styles/less/global.less
rename to src/styles/global.css
diff --git a/src/styles/css/tailwind.css b/src/styles/tailwind.css
similarity index 100%
rename from src/styles/css/tailwind.css
rename to src/styles/tailwind.css
diff --git a/src/typings/global.d.ts b/src/typings/global.d.ts
index bf8ef32..b199d9e 100644
--- a/src/typings/global.d.ts
+++ b/src/typings/global.d.ts
@@ -1,6 +1,3 @@
interface Window {
- $loadingBar?: import('naive-ui').LoadingBarProviderInst;
- $dialog?: import('naive-ui').DialogProviderInst;
$message?: import('naive-ui').MessageProviderInst;
- $notification?: import('naive-ui').NotificationProviderInst;
}
diff --git a/src/views/Chat/Message.vue b/src/views/Chat/Message.vue
index fb424fe..6861c88 100644
--- a/src/views/Chat/Message.vue
+++ b/src/views/Chat/Message.vue
@@ -25,7 +25,7 @@ defineProps
()
{{ date }}
-
+
diff --git a/src/views/Chat/index.vue b/src/views/Chat/index.vue
index 8f4d546..09c262c 100644
--- a/src/views/Chat/index.vue
+++ b/src/views/Chat/index.vue
@@ -96,7 +96,12 @@ function addMessage(message: string, user = false, error = false) {