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. manubi
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 8
    • Best 0
    • Groups 0

    manubi

    @manubi

    0
    Reputation
    2
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    manubi Follow

    Latest posts made by manubi

    • RE: Component register error with Jest testing

      doesn’t really help… any other ideas?

      posted in Help
      M
      manubi
    • RE: Vue 3 migration (will the Quasar plugin work in Vue 3 or will it need to be upgraded?)

      Thanks @metalsadman I tried quasar with the CLI yesterday. That’s not the road I wonna go down. Can I still use quasar as a plugin with vue3 and the vue cli? Thanks for the help!

      posted in CLI
      M
      manubi
    • RE: Component register error with Jest testing

      Thanks for the help, but the thing is I don’t have a quasar.conf file because I have quasar installed via vue cli with a quasar plugin. What I have is a quasar.js file that looks like this.

      import '@quasar/extras/fontawesome-v5/fontawesome-v5.css'
      import '@quasar/extras/material-icons/material-icons.css'
      import { LocalStorage, Notify, Quasar } from 'quasar'
      import Vue from 'vue'
      import './styles/quasar.scss'
      
      Vue.use(Quasar, {
        config: {},
        components: ['QPage'],
        directives: {
          /* not needed if importStrategy is not 'manual' */
        },
        plugins: { Notify, LocalStorage }
      })
      

      If I import them manually it still doesn’t work. Any other ideas? 😃

      posted in Help
      M
      manubi
    • RE: Vue 3 migration (will the Quasar plugin work in Vue 3 or will it need to be upgraded?)

      What strategy is recommended to migrate from vue cli with quasar plugin to quasar cli? And is there a guide somewhere?

      posted in CLI
      M
      manubi
    • RE: Import strategy for Vue CLI plugin?

      @PS did you manage to change it as I am having the same problem?

      posted in Framework
      M
      manubi
    • Component register error with Jest testing

      I am trying to get my testing to run. But I am getting this error:

      console.error
        [Vue warn]: Unknown custom element: <q-page> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
      
      "dependencies": {
        "@ag-grid-community/vue": "^24.0.0",
        "@ag-grid-enterprise/all-modules": "^24.0.0",
        "@quasar/extras": "^1.9.9",
        "apollo-cache-inmemory": "^1.6.6",
        "apollo-client": "^2.6.10",
        "apollo-link": "^1.2.14",
        "apollo-link-http": "^1.5.17",
        "apollo-upload-client": "^14.1.2",
        "axios": "^0.20.0",
        "core-js": "^3.6.5",
        "graphql": "^15.3.0",
        "graphql-tag": "^2.11.0",
        "quasar": "^1.14.1",
        "subscriptions-transport-ws": "^0.9.18",
        "vue": "^2.6.12",
        "vue-apollo": "^3.0.4",
        "vue-class-component": "^7.2.6",
        "vue-matomo": "^3.14.0-0",
        "vue-plotly": "^1.1.0",
        "vue-property-decorator": "^8.0.0",
        "vue-router": "^3.4.6",
        "vuex": "^3.5.1"
      },
      "devDependencies": {
        "@babel/plugin-syntax-dynamic-import": "^7.8.3",
        "@testing-library/jest-dom": "^5.11.4",
        "@testing-library/vue": "^5.1.0",
        "@types/jest": "^26.0.15",
        "@typescript-eslint/eslint-plugin": "^4.4.1",
        "@typescript-eslint/parser": "^4.4.1",
        "@vue/cli-plugin-babel": "~4.5.7",
        "@vue/cli-plugin-eslint": "~4.5.7",
        "@vue/cli-plugin-router": "~4.5.7",
        "@vue/cli-plugin-typescript": "~4.5.7",
        "@vue/cli-plugin-vuex": "~4.5.7",
        "@vue/cli-service": "~4.5.7",
        "@vue/eslint-config-prettier": "^6.0.0",
        "@vue/eslint-config-typescript": "^7.0.0",
        "@vue/test-utils": "^1.1.0",
        "babel-core": "^7.0.0-bridge.0",
        "babel-plugin-transform-imports": "2.0.0",
        "compression-webpack-plugin": "^6.0.3",
        "eslint": "^6.8.0",
        "eslint-plugin-prettier": "^3.1.4",
        "eslint-plugin-vue": "^7.0.1",
        "jest": "^26.6.0",
        "node-sass": "^4.14.1",
        "prettier": "^2.1.2",
        "sass-loader": "^10.0.3",
        "style-resources-loader": "^1.3.3",
        "ts-jest": "^26.4.1",
        "ts-node": "^9.0.0",
        "typescript": "~4.0.3",
        "vue-cli-plugin-quasar": "~3.0.1",
        "vue-cli-plugin-style-resources-loader": "~0.1.4",
        "vue-cli-plugin-webpack-bundle-analyzer": "~2.0.0",
        "vue-jest": "^3.0.7",
        "vue-template-compiler": "^2.6.12"
      },
      "homepage": "https://re-solute.eu",
      "license": "ISC",
      "jest": {
        "moduleFileExtensions": [
          "js",
          "ts",
          "json",
          "node",
          "vue"
        ],
        "moduleDirectories": [
          "node_modules",
          "src"
        ],
        "moduleNameMapper": {
          "src/(.*)": "<rootDir>/src/$1",
          "quasar": "quasar/dist/quasar.umd.min.js"
        },
        "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
        "transform": {
          ".*\\.(vue)$": "vue-jest",
          "^.+\\.tsx?$": "ts-jest",
          "^.+\\.ts?$": "ts-jest",
          "^.+\\.js$": "babel-jest"
        },
        "testURL": "http://localhost/"
      }
      

      Any hints?

      posted in Help
      M
      manubi
    • RE: [0.15.1] Components registering within Jest tests

      I am still getting the same error. Installing quasar ext add @quasar/testing throws an error “ext unknown”

      posted in Help
      M
      manubi
    • RE: @quasar/testing (jest) components not registered when VueRouter not created

      Any news to this error/warning?

      posted in [v1] App Extensions
      M
      manubi