screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <h4>Vue Js get Base URL</h4> <div id="app"> <p>Base Url:{{baseUrl}}</p> </div> <script type="module"> const app = Vue.createApp({ data() { return { baseUrl :window.location.origin } }, }); app.mount('#app'); </script> </body> </html>