No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. diegomagikal
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 7
    • Best 1
    • Groups 0

    diegomagikal

    @diegomagikal

    2
    Reputation
    136
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    diegomagikal Follow

    Best posts made by diegomagikal

    • [v1] Filter feature in QSelect

      Hello all,

      I’m migrating all my apps from v0.17.* to the latest version of Quasar and all runs fine.

      The problem is the new way to use filter functions for QSelects: before, I could to use the same method to filter all qselects values, through the :filter prop ( like this: https://codepen.io/diegomagikal/pen/QoadEV).

      But now (in V1), with @filter is necessary modify an object previously defined (https://codepen.io/diegomagikal/pen/NJXjRd) to do the same (in this example, the stringOptions const).

      So I’ll have to create a separate object with filterable options for each qselect on my page. Is there any way around this? Thanks in advance.

      posted in Framework
      D
      diegomagikal

    Latest posts made by diegomagikal

    • RE: How to install local app-extension

      Thanks. After upgrade my environment, I can run yarn link on Windows.

      posted in Framework
      D
      diegomagikal
    • How to install local app-extension

      Hi,

      How to install and run a custom app-extension from local source?

      I’m running

      yarn add --dev @quasar/quasar-app-extension-example@ssh://local-server/modules/example.git
      

      and changing the code. But if I run quasar ext invoke example, I get this error:

      Tried to invoke App Extension "example", but it's npm package is not installed
      
      posted in Framework
      D
      diegomagikal
    • [v1] Filter feature in QSelect

      Hello all,

      I’m migrating all my apps from v0.17.* to the latest version of Quasar and all runs fine.

      The problem is the new way to use filter functions for QSelects: before, I could to use the same method to filter all qselects values, through the :filter prop ( like this: https://codepen.io/diegomagikal/pen/QoadEV).

      But now (in V1), with @filter is necessary modify an object previously defined (https://codepen.io/diegomagikal/pen/NJXjRd) to do the same (in this example, the stringOptions const).

      So I’ll have to create a separate object with filterable options for each qselect on my page. Is there any way around this? Thanks in advance.

      posted in Framework
      D
      diegomagikal
    • RE: VueAuthenticate and $auth var

      @chbarr Solved! Many thanks! 😃

      posted in Help
      D
      diegomagikal
    • VueAuthenticate and $auth var

      I’m migrating my app from v 0.14 to 0.15 and I facing a lot of problems.

      First, I created a plugin named vueauthenticate.js with code:

      import Vue from 'vue'
      import axios from 'axios';
      import VueAxios from 'vue-axios'
      import VueAuthenticate from 'vue-authenticate'
      
      export default ({ Vue }) => {
      
        Vue.use(VueAuthenticate, {
              baseUrl: '/login'          
              })
      }
      

      So, I put vueauthenticate in quasar.conf.js plugins. All dependencies are installed.

      But when I check the console, the var $auth is present in Vue but with message: Exception: Error: Request handler instance not found! at Vue.get (webpack-internal:///./node_modules/vue-authenticate/dist/vue-authenticate.es2015.js:1405:19) at Vue.remoteFunction (<anonymous>:2:14) . Obviously, nothing works.

      Request handler instance not found

      Any idea? Thanks

      posted in Help
      D
      diegomagikal