05 2024 档案
摘要:获取ip 地址 fetch('https://api.ipify.org?format=json') .then(response => response.json()) .then(json => console.log(json.ip) ) 获取 当前城市信息 var xhttp = new X
阅读全文
摘要:刷新报404问题主要是 路由模式是histioy , 要改为hash 模式 import { createWebHistory, createWebHashHistory,createRouter, RouteRecordRaw } from 'vue-router'; 路由配置文件由 create
阅读全文