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