1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Adds i18n support with vue-i18n (#1870)

* Adds asset changes for i18n

* Adds asset changes for i18n

* Adds vite configs

* Adds auto import and cleans up props

* Initital localzation

* Fixes dockerfile

* Fixes tests

* Updates fixutres

* Updates default lang
This commit is contained in:
Amir Raminfar
2022-09-08 15:40:26 -07:00
committed by GitHub
parent 4395bc9dc5
commit ee37d7c30e
42 changed files with 1099 additions and 350 deletions

View File

@@ -5,14 +5,13 @@
</template>
<script lang="ts" setup>
import LogViewer from "./LogViewer.vue";
import { ref } from "vue";
import LogEventSource from "./LogEventSource.vue";
const emit = defineEmits(["loading-more"]);
const source = ref<InstanceType<typeof LogViewer>>();
const source = $ref<InstanceType<typeof LogEventSource>>();
function clear() {
source.value?.clear();
source?.clear();
}
defineExpose({
clear,