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>
选择文本弹出提示
我看上并且用上的
其他的库和文章
stackoverflow 的几个相关文章
https://stackoverflow.com/questions/55876525/javascript-position-div-centered-above-text-selection
还有 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
浏览器检测库,移动端检测库,移动端检测的几种方法
我看上的
其他的几个库
- https://web.wurfl.io/
- https://www.ruanyifeng.com/blog/2021/09/detecting-mobile-browser.html
- https://github.com/matthewhudson/current-device
- https://github.com/etienne-martin/device-detector-js
手势检测库
every 空数组返回的 true
[].every(() => false); // true
lama-cleaner
lama-cleaner —model=mps