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.
44 lines
1.3 KiB
44 lines
1.3 KiB
<script setup lang="ts">
|
|
import {useServerRequest} from "~/composables/useServerRequest";
|
|
import type {ApiResult, PageResult} from "~/api";
|
|
import type {Domain} from "~/api/cms/domain/model";
|
|
|
|
const {data: domainInfo } = await useServerRequest<ApiResult<PageResult<Domain>>>('/cms/domain/getByDomain/nbg.wsdns.cn');
|
|
|
|
console.log(domainInfo.value)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="p-20 pt-[200px]">
|
|
|
|
<el-icon>
|
|
<ElIconLink/>
|
|
</el-icon>
|
|
<el-icon><ElIconArrowDown /></el-icon>
|
|
|
|
|
|
<!-- <el-dropdown>-->
|
|
<!-- <span class="el-dropdown-link">-->
|
|
<!-- Dropdown List-->
|
|
<!-- <el-icon class="el-icon--right">-->
|
|
<!-- <arrow-down />-->
|
|
<!-- </el-icon>-->
|
|
<!-- </span>-->
|
|
<!-- <template #dropdown>-->
|
|
<!-- <el-dropdown-menu>-->
|
|
<!-- <el-dropdown-item>Action 1</el-dropdown-item>-->
|
|
<!-- <el-dropdown-item>Action 2</el-dropdown-item>-->
|
|
<!-- <el-dropdown-item>Action 3</el-dropdown-item>-->
|
|
<!-- <el-dropdown-item disabled>Action 4</el-dropdown-item>-->
|
|
<!-- <el-dropdown-item divided>Action 5</el-dropdown-item>-->
|
|
<!-- </el-dropdown-menu>-->
|
|
<!-- </template>-->
|
|
<!-- </el-dropdown>-->
|
|
|
|
<!-- <el-tag type="primary">Tag 1</el-tag>-->
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|