Skip to content

Vue i18n 使用及相关资源整理

Published: at 09:06 AMSuggest Changes

Vue i18n 使用

官方文档

掘金的参考文章

import { createI18n } from "vue-i18n";

export const messages = {
  "zh-CN": {
    message: {
      hello: "你好世界",
    },
    app: {
      "你们必晓得真理,真理必叫你们得以自由。":
        "你们必晓得真理,真理必叫你们得以自由。",
    },
  },
  "en-US": {
    message: {
      hello: "hello world",
    },
    app: {
      "你们必晓得真理,真理必叫你们得以自由。":
        "Then you will know the truth, and the truth will set you free.",
    },
  },
};

export const i18n = createI18n({
  legacy: false,
  locale: localStorage.getItem('language') || 'zh-CN',
  fallbackLocale: "en", // set fallback locale
  messages, // set locale messages
});

切换语言

<script setup lang="ts">
import {
  Select,
  SelectContent,
  SelectGroup,
  SelectItem,
  SelectLabel,
  SelectTrigger,
  SelectValue,
} from "@/components/ui/select";

import { useSelectBCVStore, useAppStore } from "@/store";
const appStore = useAppStore();

import { useI18n } from "vue-i18n";
const { locale } = useI18n();

const languageChange = (value: string) => {
  appStore.language = value;
  locale.value = value;
  localStorage.setItem("language", value);
};
</script>

<template>
  <Select v-model="appStore.language" @update:modelValue="languageChange">
    <SelectTrigger class="w-28">
      <SelectValue />
    </SelectTrigger>
    <SelectContent side="top">
      <SelectGroup>
        <SelectItem value="zh-CN"> 简体中文 </SelectItem>
        <SelectItem value="en-US"> English </SelectItem>
      </SelectGroup>
    </SelectContent>
  </Select>
</template>

选择文本弹出提示

我看上并且用上的

floating-ui

Demo

其他的库和文章

TextTip.js

share-this

Selection-js

stackoverflow 的几个相关文章

https://stackoverflow.com/questions/55876525/javascript-position-div-centered-above-text-selection

https://stackoverflow.com/questions/18302683/how-to-create-tooltip-over-text-selection-without-wrapping

还有 text-area 的

https://phuoc.ng/collection/mirror-a-text-area/show-a-toolbar-after-selecting-text-in-a-text-area/

相关教程

https://devshekhawat.com/show-tooltip-on-selected-text-using-custom-hook

浏览器检测库,移动端检测库,移动端检测的几种方法

我看上的

其他的几个库

手势检测库

every 空数组返回的 true

[].every(() => false); // true

lama-cleaner

lama-cleaner —model=mps


Previous Post
Vue 按钮点击取消事件冒泡
Next Post
Vue3 获取 DOM 元素