Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. tunchamroeun
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Best 1
    • Groups 0

    tunchamroeun

    @tunchamroeun

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

    tunchamroeun Follow

    Best posts made by tunchamroeun

    • RE: [Solved]core-js issue

      @aXiDz
      1.If you have installed @quasar/icon-genie please remove it after you build your app icon and splash screen.
      2.Uninstall “core-js” from your project if exist.
      3.Remove node_modules and package_lock.json
      4. Run npm or yarn install we’ll work fine!

      posted in Help
      T
      tunchamroeun

    Latest posts made by tunchamroeun

    • RE: Email validation using quasar itself

      If your submit button inside <q-form> just use type=‘email’ it ok

      <q-form
                @submit="onSubmit"
                class="q-gutter-md"
              >
                <div class="q-gutter-y-sm">
                  <q-input
                    class="full-width"
                    outlined
                    v-model="data.name"
                    label="គោត្តនាម-នាម"
                    square
                    lazy-rules
                    :rules="[ val => !!val || 'សូមបំពេញចន្លោះ']"
                  />
                  <q-input
                    class="full-width"
                    outlined
                    type="email"
                    v-model="data.email"
                    label="អុីម៉ែល"
                    square
                    lazy-rules
                    :rules="[ val => !!val || 'សូមបំពេញចន្លោះ']"
                  />
                  <q-btn type="submit" label="រក្សាទុក" class="full-width" color="primary"/>
                </div>
              </q-form>
      
      posted in Framework
      T
      tunchamroeun
    • RE: Using MongoDB in Quasar

      @NickBloodworth I fact Vue.JS or Quasar , we use them as UI framework. If you want to communicate with backend you need a backend languages like php ,nodejs … . If you want to use Mongodb Cloud as your database you can use (nodejs express mongoose) to build API as my recommendation. If you want to move from local to Cloud just change the connection string. Hope it help

      posted in Framework
      T
      tunchamroeun
    • RE: [Solved]core-js issue

      @aXiDz
      1.If you have installed @quasar/icon-genie please remove it after you build your app icon and splash screen.
      2.Uninstall “core-js” from your project if exist.
      3.Remove node_modules and package_lock.json
      4. Run npm or yarn install we’ll work fine!

      posted in Help
      T
      tunchamroeun