index_en.vue 352 B

1234567891011121314151617181920212223242526
  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. head(){
  11. return {
  12. title: 'szhfy'
  13. }
  14. },
  15. data(){
  16. return {
  17. lang: langMap.lang.en
  18. }
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>