diff --git a/src/components.d.ts b/src/components.d.ts index 2cfd9e9..483fb29 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -20,6 +20,7 @@ declare module 'vue' { VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel'] VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels'] VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText'] + VIcon: typeof import('vuetify/components')['VIcon'] VImg: typeof import('vuetify/components')['VImg'] VList: typeof import('vuetify/components')['VList'] VListItem: typeof import('vuetify/components')['VListItem'] diff --git a/src/layouts/index.vue b/src/layouts/index.vue index df03a9b..10c223b 100644 --- a/src/layouts/index.vue +++ b/src/layouts/index.vue @@ -5,7 +5,7 @@
-
+
diff --git a/src/pages/friends.vue b/src/pages/friends.vue index 2a41829..29c789a 100644 --- a/src/pages/friends.vue +++ b/src/pages/friends.vue @@ -10,6 +10,11 @@ const friends = [ image: 'https://thehrz.net/thehrz.jpg', link: 'https://thehrz.net', }, + { + name: '金卫东同志博客', + image: '', + link: 'https://blog.sina.com.cn/u/1259127853', + }, ] @@ -20,7 +25,7 @@ const friends = [
- +
diff --git a/src/pages/index.vue b/src/pages/index.vue index 6a8f54a..2fada05 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -1,7 +1,12 @@ diff --git a/src/plugins/vuetify.ts b/src/plugins/vuetify.ts index 20f0542..95bfa64 100644 --- a/src/plugins/vuetify.ts +++ b/src/plugins/vuetify.ts @@ -7,7 +7,7 @@ import '@mdi/font/css/materialdesignicons.css' const light = { dark: false, colors: { - 'primary': '#9155FD', + 'primary': '#18a86b', 'secondary': '#8A8D93', 'surface': '#F4F5FA', 'background': '#F4F5FA', @@ -29,7 +29,7 @@ const light = { const dark = { dark: true, colors: { - 'primary': '#9155FD', + 'primary': '#18a86b', 'secondary': '#8A8D93', 'surface': '#212121', 'background': '#121212',