index_en.vue 297 B

123456789101112131415161718192021
  1. <template>
  2. <index :u-lang="lang"></index>
  3. </template>
  4. <script>
  5. import Index from "~/pages/index";
  6. import langMap from "~/map/langMap";
  7. export default {
  8. name: "index_en",
  9. components: {Index},
  10. data(){
  11. return {
  12. lang: langMap.lang.en
  13. }
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. </style>