lang.ts 271 B

123456789
  1. import en from '@/views/lang/en.json'
  2. import cn from '@/views/lang/cn.json'
  3. import hk from '@/views/lang/hk.json'
  4. const href = window.location.href.toLowerCase()
  5. export const lang =
  6. href.includes('cocorobo.com') ? en
  7. : href.includes('cocorobo.hk') ? hk
  8. : cn