<template> <div> <div>Your Public IP: {{publicIP}}</div> </div> </template> <script> export default { data() { return { publicIP: '' }; }, created() { // Fetch public IP fetch('https://api.ipify.org?format=json') .then(response => response.json()) .then(data => { this.publicIP = data.ip; }); } }; </script>
标签:vue,ip,publicIP,json,公网,data,response From: https://www.cnblogs.com/xbinbin/p/17201938.html