12345678910111213141516171819 |
- <template>
- <div id="index">
- <p>index</p>
- </div>
- </template>
- <script>
- export default {
- name: "index",
- props: {},
- components: {},
- data: () => ({}),
- created() {},
- computed: {},
- methods: {}
- };
- </script>
- <style lang="scss" scoped></style>
|