Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Christal
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 25
    • Best 1
    • Groups 0

    Christal

    @Christal

    1
    Reputation
    3
    Profile views
    25
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Christal Follow

    Best posts made by Christal

    • RE: How to build based on staging spa using dotenv

      Thanks @Hawkeye64 . But I need to separate below data in 3 different files similar to dotenv, is it possible to do so using QENV?

      {
        "development": {
          "ENV_TYPE": "Running Development",
          "ENV_DEV": "Development"
        },
        "production": {
          "ENV_TYPE": "Running Production",
          "ENV_PROD": "Production"
        },
        "test": {
          "ENV_TYPE": "Running Test",
          "ENV_Test": "Test"
        }
      }
      
      posted in CLI
      C
      Christal

    Latest posts made by Christal

    • Get update language in template

      Hi,
      I am trying to get updated language in my layout file.

      When I print this.$i18n.locale, it always gets english on first load.

      Is there any additional checking I need to add to get updated language in layout file?

      posted in CLI
      C
      Christal
    • RE: How does UMD work in a php project

      I am trying below code in a html page but getting blank page

      <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@quasar/extras/material-icons/material-icons.css">
      <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/quasar/dist/quasar.min.css">
      <script src="https://cdn.jsdelivr.net/npm/vue"></script>
      <script src="https://cdn.jsdelivr.net/npm/quasar/dist/quasar.umd.min.js"></script>
      
      <div id="q-app">
        <q-layout view="hHh lpR fFf">
      		
      			<q-header elevated class="bg-primary text-white" height-hint="98">
      			<q-toolbar>
      				<q-btn dense flat round icon="menu" @click="left = !left" />
      		
      				<q-toolbar-title>
      				<q-avatar>
      					<img src="https://cdn.quasar.dev/logo/svg/quasar-logo.svg">
      				</q-avatar>
      				Title
      				</q-toolbar-title>
      		
      				<q-btn dense flat round icon="menu" @click="right = !right" />
      			</q-toolbar>
      		
      			</q-header>
      		
      			<q-drawer show-if-above v-model="left" side="left" bordered>
      			<!-- drawer content -->
      			</q-drawer>
      		
      			<q-drawer show-if-above v-model="right" side="right" bordered>
      			<!-- drawer content -->
      			</q-drawer>
      		
      			<q-page-container>
      			</q-page-container>
      		
      			<q-footer elevated class="bg-grey-8 text-white">
      			<q-toolbar>
      				<q-toolbar-title>
      				<q-avatar>
      					<img src="https://cdn.quasar.dev/logo/svg/quasar-logo.svg">
      				</q-avatar>
      				Title
      				</q-toolbar-title>
      			</q-toolbar>
      			</q-footer>
      		
      		</q-layout>
      </div>
      
      
      <script>
      new Vue({
        el: '#q-app',
        data: function () {
          return {
            version: Quasar.version,
            left: false,
            right: false
          }
        },
        methods: {
        	notify: function () {
            this.$q.notify('Running on Quasar v' + this.$q.version)
          }
      	}
      })
      </script>
      
      posted in CLI
      C
      Christal
    • How does UMD work in a php project

      Hi ,
      I need to create a component which can be used in a php project as well. Do I have to crate the component in vue and duplicate the same code in php page using UMD? or is there any other method?

      posted in CLI
      C
      Christal
    • Clear vuex state in multiple tab of same browser

      Is there any way to clear vuex state in multiple browser?

      posted in CLI
      C
      Christal
    • Restructure folders during build without express

      Hi,
      Is it possible to restructure build folders? For instance I would like to put css folder under a folder called test.

      posted in CLI
      C
      Christal
    • quasar build error on browser

      Quasar build is throwing below errors on browser, however there is no error on quasar build --debug. May I know if I am missing anything?

      Uncaught SyntaxError: Unexpected token '<' -> vendor.65c01bbc.js:1 
      Uncaught SyntaxError: Unexpected token '<'  -> app.4a79e8ad.js:1 
      Uncaught SyntaxError: Unexpected token '<' -> runtime.7352c9a7.js:1 
      
      posted in CLI
      C
      Christal
    • RE: Uncaught SyntaxError: Unexpected token <

      @Hawkeye64 There is no error with quasar build --debug

      posted in Framework
      C
      Christal
    • RE: Uncaught SyntaxError: Unexpected token <

      @tkwebdev23 Did you find any solution to their issue?

      posted in Framework
      C
      Christal
    • hide-pagination is not working

      I have below command in my q-table, but my pagination is still appearing

        :hide-pagination="true"
      

      How do i hide the default q-table pagination?

      posted in CLI
      C
      Christal
    • Quasar line break is printing as <br /> isntead of line break
      return str + '<br />' + data 
      

      I am trying to print this in quasar, but its printing
      as a text instead of line. Is there anything I am missing?

      posted in CLI
      C
      Christal