Added Bootstrap and Vue I18N; added header and footer components; added language switcher

This commit is contained in:
2026-01-14 17:06:21 -05:00
parent 69912cce08
commit 099d48621b
17 changed files with 446 additions and 32 deletions

View File

@@ -2,11 +2,11 @@ import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
export const useCounterStore = defineStore('counter', () => {
const count = ref(0)
const doubleCount = computed(() => count.value * 2)
function increment() {
count.value++
}
const count = ref(0)
const doubleCount = computed(() => count.value * 2)
function increment() {
count.value++
}
return { count, doubleCount, increment }
return { count, doubleCount, increment }
})