feat: add full text search

This commit is contained in:
2023-08-01 20:21:31 +02:00
parent 181c15f5f5
commit 7267cb88a3
16 changed files with 242 additions and 179 deletions
+3 -2
View File
@@ -6,14 +6,15 @@
<script>
import { getCurrentInstance } from 'vue'
import { getDarkMode } from '../../utils/localStorage'
import { useState } from '~/store'
export default {
name: 'ThemedLayout',
setup() {
const instance = getCurrentInstance()
const state = useState()
if (instance) {
instance.proxy.$vuetify.theme.dark = getDarkMode()
instance.proxy.$vuetify.theme.dark = state.darkMode
}
}
}