[Vuejs]-Get parameter from input element but how to use in vue.js?

3👍

  1. You are not sending data to open method, but I suggest to use this.url to get value inside method

Either use

 open: function () {
        var url = this.url;
  1. Run your application in any local server instead directly from D drive

Leave a comment