index.vue 259 B

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