Newer
Older
testLinkTool / src / views / index.vue
dutingting on 22 May 2023 283 bytes 接口联调、增加网址弹出框组件
<template>
  <div class="home">
    <TestLink />
  </div>
</template>

<script>
// @ is an alias to /src
import TestLink from '@/components/testLink/testLink.vue'
export default {
  name: 'IndexView',
  components: {
    TestLink
  },
  data() {
    return {

    }
  },
}
</script>