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