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

    marcodc

    @marcodc

    1
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location Italy Age 30

    marcodc Follow

    Best posts made by marcodc

    • RE: [SOLVED] | i18n - NumberFormats

      OK! I got it. Now it works like a charm.

      Thank you Scott!

      posted in Help
      M
      marcodc

    Latest posts made by marcodc

    • q-list inside q-scroll-area

      I’m trying to manage a list inside a scroll-area next to another component (list / datatable).
      As you can see in this codepen, when you resize the window to sm-size (less than 1024px), the component on the right partially or totally hides the scroll-area and the first list.

      What am I doing wrong?

      posted in Help
      M
      marcodc
    • RE: [SOLVED] | i18n - NumberFormats

      OK! I got it. Now it works like a charm.

      Thank you Scott!

      posted in Help
      M
      marcodc
    • [SOLVED] | i18n - NumberFormats

      I am trying to use the number localization of the i18n plugin but I receive the following warnings.

       WARNING  Compiled with 2 warnings                                                                          
       warning  in ./src/boot/i18n.js
      "export 'messages' was not found in 'src/i18n'
       warning  in ./src/boot/i18n.js
      "export 'numberFormats' was not found in 'src/i18n'
      
      // i18n/it/index.js
      const messages = {...}
      const numberFormats = {
        currency: {
          style: 'currency', currency: 'EUR'
        }
      }
      export default { messages, numberFormats }
      
      
      // i18n/index.js
      import enUS from './en-us'
      import itIT from './it'
      
      export default {
        'en-us': enUS,
        it: itIT
      }
      
      // boot/i18n.js
      import Vue from 'vue'
      import VueI18n from 'vue-i18n'
      import { messages, numberFormats } from 'src/i18n'
      
      Vue.use(VueI18n)
      const i18n = new VueI18n({
        locale: 'it',
        fallbackLocale: 'en-us',
        messages,
        numberFormats
      })
      
      export default ({ app }) => {
        // Set i18n instance on app
        app.i18n = i18n
      }
      export { i18n }
      
      

      What am I doing wrong?

      posted in Help
      M
      marcodc