整理
This commit is contained in:
25
src/pages/Tool/API/index.page.vue
Normal file
25
src/pages/Tool/API/index.page.vue
Normal file
@ -0,0 +1,25 @@
|
||||
<script setup lang="ts">
|
||||
const baseURL = '/fake-api';
|
||||
|
||||
let fakeApiResult = $ref<null | Record<string, unknown>>(null);
|
||||
|
||||
fetch(`${baseURL}/mock/get-user-info`)
|
||||
.then((response) => response.json())
|
||||
.then((json) => (fakeApiResult = json));
|
||||
|
||||
/* fetch('https://jsonplaceholder.typicode.com/posts/1')
|
||||
.then((response) => response.json())
|
||||
.then((json) => console.log(json)); */
|
||||
// let npmRegistryApiResult = $ref<Record<string, any> | null>(null);
|
||||
|
||||
// fetch('/npm-registry-api/@vue%2Fbabel-plugin-jsx')
|
||||
// .then((response) => response.json())
|
||||
// .then((json) => npmRegistryApiResult = json);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<pre>{{ JSON.stringify(fakeApiResult, null, 2) }}</pre>
|
||||
<!-- <div>{{ npmRegistryApiResult?.['_id'] }}</div> -->
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
Reference in New Issue
Block a user