Thank You @a47ae for taking time to give us the update on it .
Posts made by kiranvasi
-
RE: NUXT with Quasar
-
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
-
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 ? ) -
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 Youhttp://quasar-framework.org/quasar-play/android/index.html#/showcase/forms/editor
Regards
-
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
-
RE: Quasar v0.15 Roadmap
@Max - yes we stopped asking
But any clue on the date please ? Thank You.
-
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”
} -
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 …
-
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
-
RE: Quasar v0.15 Roadmap
@jimmack1963 wow! thanks for offering and could you please post the details ?
-
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-
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
-
adding new chips to the select component
I mean simply some component like having features of both the components autocomplete and Select
Thank You
-
-
RE: The 0.14 beta release is available!
Thanks a lot for your hard work on it and good luck
-
RE: Future v0.14 Feature List
This definitely puts Quasar framework in next level . Thanks for working on this and God bless you .
-
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 }
-
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
-
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>
-
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>
-
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