diff --git a/src/App.vue b/src/App.vue index ab09150..c087988 100644 --- a/src/App.vue +++ b/src/App.vue @@ -11,9 +11,14 @@ \ No newline at end of file diff --git a/src/components/CommonHeader.vue b/src/components/CommonHeader.vue new file mode 100644 index 0000000..b36d9b1 --- /dev/null +++ b/src/components/CommonHeader.vue @@ -0,0 +1,44 @@ + + + \ No newline at end of file diff --git a/src/components/ConsoleHeader.vue b/src/components/ConsoleHeader.vue index 9c6f50a..b39ab50 100644 --- a/src/components/ConsoleHeader.vue +++ b/src/components/ConsoleHeader.vue @@ -38,23 +38,8 @@ - - - - - BG - EN - - - - \ No newline at end of file diff --git a/src/stores/app.js b/src/stores/app.js index 921896e..cc026b9 100644 --- a/src/stores/app.js +++ b/src/stores/app.js @@ -6,6 +6,10 @@ let prefs = localStorage.getItem('prefs') prefs = reactive(prefs ? JSON.parse(prefs) : { xr: { depthSense: true + }, + ui:{ + lang: 'bg', + theme: 'light' } })