[Vuejs]-I want to use t method for href of a tag and custom data attribute instead of nuxt-link when using Nuxt.js + i18n

1👍

Suggested fix:

<template>
  <a :href="`https://google/${t('locale')}.com`" :data-link="t('hogehoge')"></a>
</template>

You can read more about data binding with Vue/Nuxt here: https://v2.vuejs.org/v2/guide/class-and-style.html#Object-Syntax

Leave a comment