2024-04-22 10:00:26 +08:00

17 lines
357 B
Vue

<template>
</template>
<script>
import {languageName} from "../language";
export default {
mounted() {
if (languageName === "zh" || languageName === "zh-CHT") {
window.location.href = $A.mainUrl("site/zh/price.html")
} else {
window.location.href = $A.mainUrl("site/en/price.html")
}
},
}
</script>