2023-07-11 15:48:22 +08:00

17 lines
361 B
Vue

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