This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### Windows | |
# Windows thumbnail cache files | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
# Dump file | |
*.stackdump |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script setup> | |
import { ref, onMounted } from 'vue'; | |
import AppForm from './components/AppForm.vue'; | |
import AppList from './components/AppList.vue'; | |
import AppLoading from './components/AppLoading.vue'; | |
import useFetch from './use/useFetch'; | |
const rootUrl = 'https://my-json-server.typicode.com/tq-bit/use-fetch-json-mock'; | |
const { loading, results, getJson } = useFetch(rootUrl); |
OlderNewer