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. kiranvasi
    3. Posts
    K
    • Profile
    • Following 0
    • Followers 1
    • Topics 5
    • Posts 18
    • Best 8
    • Groups 0

    Posts made by kiranvasi

    • RE: NUXT with Quasar

      Thank You @a47ae for taking time to give us the update on it .

      posted in Framework
      K
      kiranvasi
    • RE: NUXT with Quasar

      Hello All ,

      Sorry to bug you all again…Using NUXT takes us to the next level in development . Any one has any idea on using it?
      I don’t see any updates to it in the last 6 months . Is it still valid ? Because in the Quasar Roadmap it says NUXT will be available in version 1 .
      Ane one has any idea when version 1 will be available ?

      Thank You All

      Thank You

      posted in Framework
      K
      kiranvasi
    • SELECT and CHIPS INPUT

      Hello All,

      I see we have SELECT ( MENU ) and Chips input . Can we combine these and get something like below kind of behavior ?
      We have “SELECT” with “filter / search” , but this needs two clicks to search . One to select and other to search ( Can we search directly search the SELECT list of options ? )

      alt text

      posted in Framework
      K
      kiranvasi
    • WYSIWYG - Embeding Images ( or upload a image ) and youtube videos

      Hello All ,

      I don’t see option to embed the images and youtube videos , Am I missing any thing ?
      Please let me know if you guys are able to do it . Thank You

      http://quasar-framework.org/quasar-play/android/index.html#/showcase/forms/editor

      Regards

      posted in Framework
      K
      kiranvasi
    • NUXT with Quasar

      Hello All,

      I am trying to use Quasar NUXT template , but not sure if I am using it correctly .

      https://github.com/quasarframework/quasar-template-nuxt ( Do I have to download this and copy it some folder…? I don’t find templates folder in version 0.15)

      I am trying to run the below command as per the instructions on the above link , but is generating folder name with “nuxt” and not “My-project” . Moreover the generated folder structure doesn’t contain nuxt.config.js

      quasar init nuxt my-project

      Could any one please help me on this ?

      Thanks for your help

      posted in Framework
      K
      kiranvasi
    • RE: Quasar v0.15 Roadmap

      @Max - yes we stopped asking 🙂 But any clue on the date please ? Thank You.

      posted in Announcements
      K
      kiranvasi
    • RE: Released Quasar v0.14.5

      Just installed with " quasar init " , but still the version shows 0.14.4 in package.json file .

      “dependencies”: {
      “babel-runtime”: “^6.25.0”,
      “quasar-extras”: “0.x”,
      “quasar-framework”: “^0.14.4”,
      “vue”: “^2.5.0”,
      “vue-router”: “^3.0.1”
      }

      posted in Announcements
      K
      kiranvasi
    • RE: Released Quasar v0.14.5

      Thank you for all your hard work . Before we start using one version you are coming with another version . You are simply amazing …💯

      posted in Announcements
      K
      kiranvasi
    • RE: Quasar v0.15 Roadmap

      @jimmack1963 No need to be sorry 🙂 Thanks for your inputs and I can understand . After working on it for few hours , I am thinking of going for quilljs … Looks like my users are not familiar with mark down approach so better going with rich text editor ( still thinking ) . I couldn’t find any Vuejs editors . Looks like quills is bit light weight compare to other ones and don’t need JQUERY . But looking for other light weight ones also with good functionality ( especially embedding images and youtube videos just by pasting the links ) . If you have any idea please share your ideas . Thanks again

      posted in Announcements
      K
      kiranvasi
    • RE: Quasar v0.15 Roadmap

      @jimmack1963 wow! thanks for offering and could you please post the details ?

      posted in Announcements
      K
      kiranvasi
    • RE: Quasar v0.15 Roadmap

      Thanks again for this framework . Please don’t think we are asking too much 🙂

      but can we get drop down some thing similar to https://sagalbot.github.io/vue-select/ .
      I know our “Select” component is good , but

      1. On SELECT component “search” feature should activate immediately after clicking on it . Right now search feature takes two clicks . One click on SELECT component and other one on SEARCH

      2. adding new chips to the select component

      I mean simply some component like having features of both the components autocomplete and Select

      Thank You

      posted in Announcements
      K
      kiranvasi
    • RE: The 0.14 beta release is available!

      Thanks a lot for your hard work on it and good luck

      posted in Announcements
      K
      kiranvasi
    • RE: Future v0.14 Feature List

      This definitely puts Quasar framework in next level . Thanks for working on this and God bless you .

      posted in Announcements
      K
      kiranvasi
    • RE: Can we transition "maximized model" from the center of the screen?

      Thanks for your reply with the examples .( I am sorry I didn’t notice transition property earlier in the document and I think I am getting old )
      Juts used simple fade transition with the transition prop .

      ( From Vuejs document )

      .fade-enter-active, .fade-leave-active {
        transition: opacity .5s
      }
      .fade-enter, .fade-leave-to  {
        opacity: 0
      }
      
      posted in Framework
      K
      kiranvasi
    • Can we transition "maximized model" from the center of the screen?

      Hello All,

      Currently the maximized model is transiting from right . Is there way we can transit it from center of the screen to full screen …?

      Thank You for your help

      posted in Framework
      K
      kiranvasi
    • RE: Drawer on top of the header

      Thank you @rstoenescu for taking time to respond to my question . Good luck . For now I am using the below work around ( Using two <q-layout> tags 🙂 I know this is not the way to do it . But to get the feel of look

      <template>
        <q-layout>
          <q-drawer   ref="leftDrawer">
            <div class="toolbar light">
              <q-toolbar-title :padding="1">
                Left-side Drawer
              </q-toolbar-title>
            </div>
            <p style="padding: 25px;" class="text-grey-7">
             Test Drawer
            </p>
          </q-drawer>
      <q-layout>
           <div slot="header" class="toolbar">
        </q-layout>   
          </div>
          <router-view class="layout-view"></router-view>
        </q-layout>
      </template>
      <script>
        export default {
          data () {
            return {
              search: ''
            }
          }
        }
      </script>
      <style type="text/css">
        .drawer{
          z-index: 999;
        }
      </style>
      posted in Framework
      K
      kiranvasi
    • Drawer on top of the header

      Hello All,

      I am trying to put left drawer above my header ( on top of header in left side ) . But no luck . The drawer is starting always below the header .
      Could any one please help me to fix this one ? Below is the code .

      ( I remember I made it working couple of weeks ago , but can not remember what I had done )

      Thank You .

      ==============================================================

      
      <template>
        <q-layout>
          <q-drawer   ref="leftDrawer">
            <div class="toolbar light">
              <q-toolbar-title :padding="1">
                Left-side Drawer
              </q-toolbar-title>
            </div>
            <p style="padding: 25px;" class="text-grey-7">
             Test Drawer
            </p>
          </q-drawer>
           <div slot="header" class="toolbar">     
          </div>
          <router-view class="layout-view"></router-view>
        </q-layout>
      </template>
      <script>
      
        export default {
          data () {
            return {
              search: ''
            }
          }
        }
      
      </script>
      
      posted in Framework
      K
      kiranvasi
    • RE: Build vendor.js size is too big as fresh install

      Thank You @rstoenescu for making this wonderful framework . I just started using it and noticed the same file size issues .vendor.js - 499 kB and CSS - 253 KB . But as you said definitely it will help if we are able to cherry-pick only the Quasar features .

      ( In addition to the above size I am going to add JQUERY for Summernote and for SELECT2 plugins , this is making )

      Regards
      Kiran

      posted in Framework
      K
      kiranvasi