mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
17 lines
361 B
Vue
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>
|