Get settings from backend, added web search functionality

This commit is contained in:
Rafi
2023-03-23 11:45:56 +08:00
parent e90dc0c12b
commit 27c5e2a3ac
7 changed files with 61 additions and 28 deletions

View File

@@ -84,6 +84,7 @@ const loadConversations = async () => {
const {mdAndUp} = useDisplay()
const drawerPermanent = computed(() => {
return mdAndUp.value
})
@@ -97,8 +98,9 @@ const signOut = async () => {
}
}
onNuxtReady(async () => {
onMounted(async () => {
loadConversations()
loadSettings()
})
</script>