diff --git a/app.vue b/app.vue index 5178736..60e722f 100644 --- a/app.vue +++ b/app.vue @@ -10,6 +10,9 @@ useSeoMeta({ }); useHead({ + htmlAttrs: { + lang: "en", + }, bodyAttrs: { class: "dark:bg-slate-900", }, diff --git a/components/company.vue b/components/company.vue index 747e728..22375b4 100644 --- a/components/company.vue +++ b/components/company.vue @@ -5,6 +5,9 @@ interface Props { } const props = defineProps(); + +const titleRef = ref(); +const altContent = computed(() => titleRef.value?.$el.textContent);