Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. leon
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 92
    • Best 15
    • Groups 0

    leon

    @leon

    29
    Reputation
    857
    Profile views
    92
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    leon Follow

    Best posts made by leon

    • Quasar admin examples

      I’m trying to show some examples of quasar and vuejs.
      Also adding some libraries to enhance.

      I hope it help someone and make Quasar bigger.

      https://github.com/odranoelBR/vue-quasar-admin-example
      Tks

      posted in Show & Tell
      L
      leon
    • RE: Webpack alias in quasar.conf.js .15+

      WORKING ALIAS

      let path = require('path')
      
        build: {
            scopeHoisting: true,
            vueRouterMode: 'history',
            // gzip: true,
            // analyze: true,
            // extractCSS: false,
            // useNotifier: false,
            extendWebpack (cfg) {
              cfg.module.rules.push({
                enforce: 'pre',
                test: /\.(js|vue)$/,
                loader: 'eslint-loader',
                exclude: /(node_modules|quasar)/
              })
              cfg.resolve.alias = {
                ...cfg.resolve.alias,
                '@components': path.resolve(__dirname, './src/components'),
                '@helpers': path.resolve(__dirname, './src/helpers'),
                '@module1': path.resolve(__dirname, './src/domains/module1),
                ....
              }
            }
          },
      posted in Help
      L
      leon
    • RE: Route Animations

      @Zyme
      Try

        <q-transition appear enter="fadeInLeft" leave="fadeOutRight" mode="out-in">
             <router-view  :key="$route.name" />
        </q-transition>
      

      Remember to read http://quasar-framework.org/components/transition.html for imports

      posted in Help
      L
      leon
    • RE: Quasar admin examples

      Tks all. I will update to 0.14 after the release and finish the project tasks.
      Lets keep helping quasar community grows!

      posted in Show & Tell
      L
      leon
    • RE: Anyone built expandable rows in data table?

      Hi, im using collapsible inside <template>.
      I will upload a video working when get back in company.
      With litle css and no-margin / no-padding etc , works very good.

      posted in Help
      L
      leon
    • RE: Webpack alias in quasar.conf.js .15+

      Additional to this, if you use VS Code and want CTRL + click - open the import file using alias.

      Create a jsconfig.json in root folder of project and :

      {
          "compilerOptions": {
              "baseUrl": "./",
              "paths": {
                  "~/*": ["./src/*"],
                  "@components/*": ["./src/components/"],
                  "@helpers/*": ["./src/helpers/*"],
                  "@module1/*": ["./src/domains/module1/*"],
              }
          }
      }
      

      Reboot VSCode

      posted in Help
      L
      leon
    • RE: first Official Vue.js Conference

      @rstoenescu Focus on going man. Quasar needs to be know.
      The community can wait a little bit for you to prepare.

      Quasar rocks!

      posted in Hangout
      L
      leon
    • RE: Quasar Calendar components

      VEEEERy Nice. Gtz @sirbeagle

      posted in Show & Tell
      L
      leon
    • RE: Editable cell Data Table examples?

      Hi!
      Can use a direct v-model too.

      <template slot="col-message" slot-scope="cell">
          <q-input :v-model="table[cell.row.__index].message" ></q-input>
      </template>
      posted in Help
      L
      leon
    • RE: How to integrate Quasar framework into my vue 2 project

      Hi @Mayank , hope i can help you

      • Install quasar-framework ----> npm i --save quasar-framework
      • Install quasar-extras ----> npm i --save quasar-extras

      Where you start your vue ( main.js normaly) add :

      • import Quasar from ‘quasar-framework’
      • import ‘quasar-extras/roboto-font’
      • require(quasar/dist/quasar.mat.css) or require(quasar/dist/quasar.ios.css)

      Now start you Vue whit :

      Quasar.start(() => {
      /* eslint-disable no-new */
        new Vue({
          el: '#q-app', // this ID must exist in your index.html
          router,
          render: h => h(App),
        })
      })
      posted in Framework
      L
      leon

    Latest posts made by leon

    • RE: Quasar Build with process.env.DEV = true ?

      Solution here : https://forum.quasar-framework.org/topic/6622/how-to-support-multiple-environments/4
      tks!

      posted in Help
      L
      leon
    • RE: Quasar Build with process.env.DEV = true ?

      I’m using https://github.com/quasarframework/app-extension-dotenv/tree/dev/app-extension.
      and i need an build android with staging config, but every build point to .env (production)

      posted in Help
      L
      leon
    • RE: Quasar Build with process.env.DEV = true ?

      No @Hawkeye64 , i have read it. Tks

      I need a stagging build.

      posted in Help
      L
      leon
    • Quasar Build with process.env.DEV = true ?

      I searched in docs, but didin’t find.

      Can i set process.env.DEV = true on quasar build ?
      or
      set process.env.PROD = false on quasar build ?

      Thanks!

      posted in Help
      L
      leon
    • RE: QSelect filter upgrade to v1+

      duplicated of https://forum.quasar-framework.org/topic/3271/v1-filter-feature-in-qselect/4?_=1601990444085

      posted in Show & Tell
      L
      leon
    • RE: [v1] Filter feature in QSelect

      Same feeling here.

      posted in Framework
      L
      leon
    • QSelect filter upgrade to v1+

      Hi guys.
      I’m migrating an application from 0.17 to 1+.
      Why the ‘filter feature’ become so complex ? i understand the need of a complex function to handle the filtering. But most of cases just a filter like 0.17 works perfect.

      Someone have a solution for it ? some forms have 4 5 selects with filter needing, it make alot of boilerplate code…

      posted in Show & Tell
      L
      leon
    • RE: Error compiling cordova android

      Yea man, i know, we must read docs before post something, but this project was compiling in early versions whitout manage any icons.
      In upgrade docs dont mention this change of mandatory.

      posted in Help
      L
      leon
    • RE: Error compiling cordova android

      Tks for the help man, the problem is:
      quasar docs must put this part https://quasar.dev/quasar-cli/developing-cordova-apps/app-icons-cordova
      as mandatory to generate, in previus versions this are not.

      posted in Help
      L
      leon
    • RE: Error compiling cordova android

      No.
      I installed the splashcreeen wishing to help

      posted in Help
      L
      leon