12345678910111213141516171819 |
- <template>
- <div id="home"></div>
- </template>
- <script>
- export default {
- name: 'home',
- props: {},
- components: {},
- data: () => ({}),
- created() {
- window.location.href = 'home.html';
- },
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped></style>
|