home.vue 280 B

12345678910111213141516171819
  1. <template>
  2. <div id="home"></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'home',
  7. props: {},
  8. components: {},
  9. data: () => ({}),
  10. created() {
  11. window.location.href = 'home.html';
  12. },
  13. computed: {},
  14. methods: {},
  15. };
  16. </script>
  17. <style lang="less" scoped></style>