diff options
author | 135e2 <[email protected]> | 2022-08-07 20:06:24 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-08-07 20:06:24 +0800 |
commit | 56edcda3140e28ea6ade0c2f1760106592ed983b (patch) | |
tree | e0e4227d4f006ade2e52adb4ce7c6c5daaf6e5e4 /src/plugins | |
parent | c604a64eddd4bbe7111733ed9951b60d28774041 (diff) | |
download | otonashi-56edcda3140e28ea6ade0c2f1760106592ed983b.tar.gz otonashi-56edcda3140e28ea6ade0c2f1760106592ed983b.tar.bz2 otonashi-56edcda3140e28ea6ade0c2f1760106592ed983b.zip |
feat: implement cards ui
Still in an early stage now, further improvements needed.
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/vuetify.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/vuetify.js b/src/plugins/vuetify.js index 2cb3bef..f479d43 100644 --- a/src/plugins/vuetify.js +++ b/src/plugins/vuetify.js @@ -7,5 +7,9 @@ import * as directives from "vuetify/directives"; // Vuetify import { createVuetify } from "vuetify"; -export default createVuetify({ components, directives }); +export default createVuetify({ + theme: { defaultTheme: "dark" }, + components, + directives, +}); // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides |