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

    oliverkroener

    @oliverkroener

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

    oliverkroener Follow

    Latest posts made by oliverkroener

    • RE: Plugin Meta not working?

      Dear Scott,

      thanks, it working either way now, just made some simple mistake!

      Thanks for your help!

      posted in Framework
      O
      oliverkroener
    • Plugin Meta not working?

      Hello,

      I am trying to use the Meta Plugin for adding additional meta tags, but its not working. My code is:

      quasar.conf.js

          framework: {
            iconSet: 'material-icons', // Quasar icon set
            lang: 'de', // Quasar language pack
            config: {},
      
            // Possible values for "importStrategy":
            // * 'auto' - (DEFAULT) Auto-import needed Quasar components & directives
            // * 'all'  - Manually specify what to import
            importStrategy: 'auto',
      
            // For special cases outside of where "auto" importStrategy can have an impact
            // (like functional components as one of the examples),
            // you can manually specify Quasar components/directives to be available everywhere:
            //
            // components: [],
            // directives: [],
      
            // Quasar plugins
            plugins: ['Meta']
          },
      

      MainLayout.vue

        meta () {
          return {
            meta: {
              test: {
                name: 'test',
                content: 'TEST'
              }
            }
          }
      

      What’s missing?

      posted in Framework
      O
      oliverkroener