javascript - Vue i18n-$t undefined 外部模板

标签 javascript vue.js vuejs3 vue-i18n antdv

您好,如果我在模板中使用 {{$t('dash.port')}},翻译就会发生并且一切正常。 现在我有一个 antdv 表,其中我以这种方式声明了列:

const columns = [
  {
    title:"pone",
    dataIndex: 'pone',
    key: 'pone',
  },
    ...
    ]

//这里是antdv表格组件:

    <template>
 <a-table :data-source="data" :columns="columns">
  <template #filterDropdown="{ setSelectedKeys, selectedKeys, confirm, clearFilters, column }">
  <div style="padding: 8px">
    <a-input
      ref="searchInput"
      :placeholder="`Search ${column.dataIndex}`"
      :value="selectedKeys[0]"
      style="width: 188px; margin-bottom: 8px; display: block"
      @change="e => setSelectedKeys(e.target.value ? [e.target.value] : [])"
      @pressEnter="handleSearch(selectedKeys, confirm, column.dataIndex)"
    />
    <a-button
      type="primary"
      size="small"
      style="width: 90px; margin-right: 8px"
      @click="handleSearch(selectedKeys, confirm, column.dataIndex)"
    >
      <template #icon><SearchOutlined /></template>
      Search
    </a-button>
    <a-button size="small" style="width: 90px" @click="handleReset(clearFilters)">
      Reset
    </a-button>
  </div>
</template>
<template #filterIcon="filtered">
  <search-outlined :style="{ color: filtered ? '#108ee9' : undefined }" />
</template>
<template #customRender="{ text, column }">
  <span v-if="searchText && searchedColumn === column.dataIndex">
    <template
      v-for="(fragment, i) in text
        .toString()
        .split(new RegExp(`(?<=${searchText})|(?=${searchText})`, 'i'))"
    >
      <mark
        v-if="fragment.toLowerCase() === searchText.toLowerCase()"
        class="highlight"
        :key="i"
      >
        {{ fragment }}
      </mark>
      <template v-else>{{ fragment }}</template>
    </template>
  </span>
  <template v-else>
    {{ text }}
  </template>
</template>
</a-table>
//$t 不工作的脚本部分
<script>
 import { SearchOutlined } from '@ant-design/icons-vue';
 import { defineComponent, reactive, ref } from 'vue';
    const data = [
     {
       key: '1',
       name: 'John Brown',
        age: 32,
       address: 'New York No. 1 Lake Park',
      },
    ..
   ];
   export default defineComponent({
    components: {
     SearchOutlined,
   },

 setup() {
const state = reactive({
  searchText: '',
  searchedColumn: '',
});
const searchInput = ref();
const columns = [
  {
    title: 'pone',
    dataIndex: 'pone',
    key: 'pone',
    slots: {
      filterDropdown: 'filterDropdown',
      filterIcon: 'filterIcon',
      customRender: 'customRender',
    },
    onFilter: (value, record) =>
      record.pone.toString().toLowerCase().includes(value.toLowerCase()),
    onFilterDropdownVisibleChange: visible => {
      if (visible) {
        setTimeout(() => {
          console.log(searchInput.value);
          searchInput.value.focus();
        }, 0);
      }
    },
  },
  ....
];

const handleSearch = (selectedKeys, confirm, dataIndex) => {
  confirm();
  state.searchText = selectedKeys[0];
  state.searchedColumn = dataIndex;
};

const handleReset = clearFilters => {
  clearFilters();
  state.searchText = '';
};

return {
  data,
  columns,
  handleSearch,
  handleReset,
  searchText: '',
  searchInput,
  searchedColumn: '',
  };
  },
  });
   </script>

我想要的是使用 $t 更改标题,但是当我执行 title:"$t('dash.pone')", 时,我得到 $t not defined。我怎样才能使它工作?

最佳答案

我还没有学过 vue3,所以我不确定它是如何工作的,但你应该看看下面的所有例子:https://github.com/intlify/vue-i18n-next/tree/master/examples/composition

但也许这个有效?

const app = createApp({
  setup() {
    const { t, locale } = useI18n()

    t('dash.port') // this one maybe works ?

    return { t, locale }
  }
})

关于javascript - Vue i18n-$t undefined 外部模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67369652/

相关文章:

javascript - 我可以将 z-index 图层合并到单个图像中吗?

javascript - VueJS : Loop through JSON-object

vue.js - 我可以将 vue-fontawesome 用于复选框复选标记吗?

javascript - Vue3 : cannot access computed prop from another computed prop when using TypeScript

vuejs3 - 如何在 Vue.js 3 中访问动态引用标记的 html 元素?

javascript - AngularJS 与 Webpack - 缩小 Assets 导致 CSS 问题

javascript - jQuery 替换删除 IE 中的换行符

javascript - typeof something 返回对象而不是数组

javascript - 如何优雅地使用 v-model 和 Vuex store?

typescript - 如何使用 Typescript 处理 Vue 3 模板中的 DOM 对象