screen_rotation
Copied to Clipboard
<html> <head> <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3/dist/vue.esm-browser.js" } } </script> <body> <div id="app"> <h2>Vue js window.location.pathname Property </h2> <p>Get Url path and filename from URL in Vue.js</p> <button @click="myFunction">Get Url Path</button> <p>{{currentPath}}</p> </div> <script type="module"> import { createApp } from 'vue' createApp({ data() { return{ currentPath:'', } }, methods:{ myFunction(){ this.currentPath ='Current Path: '+ window.location.pathname; }, } }).mount('#app') </script> </body> </head> </html>