You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
464 B

6 years ago
<template>
<div>
<api-speed-test/>
<export-excel-test/>
<image-compress-test/>
</div>
</template>
<script>
import ApiSpeedTest from "./components/ApiSpeedTest"
import ExportExcelTest from "./components/ExportExcelTest"
import ImageCompressTest from "./components/ImageCompressTest"
export default {
name: "testPage",
components: {ApiSpeedTest, ExportExcelTest, ImageCompressTest}
}
</script>