<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>