| 1234567891011121314151617181920212223242526 |
- <template>
- <index :u-lang="lang"></index>
- </template>
- <script>
- import Index from "~/pages/index";
- import langMap from "~/map/langMap";
- export default {
- name: "index_en",
- components: {Index},
- head(){
- return {
- title: 'szhfy'
- }
- },
- data(){
- return {
- lang: langMap.lang.en
- }
- }
- }
- </script>
- <style scoped>
- </style>
|