2025-11-06 14:03:58 +00:00

17 lines
331 B
Vue

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