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