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

    Still have a blank page on internet explorer

    Help
    2
    8
    2815
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      BigAppear last edited by BigAppear

      Hello,

      As title says, I have a blank page on internet explorer. I have done this: http://quasar-framework.org/guide/browser-support.html , but even if I uncomment the 2 lines for IE (v11) just show me a blank page.

      Also, it works well on Edge, but not on IE11.

      What happens ?

      1 Reply Last reply Reply Quote 0
      • B
        BigAppear last edited by BigAppear

        More information:

        After quasar dev command, I have errors in console:

        • polyfill-eventsource added missing EventSource to window
        • Object doesn’t support this property or method " assign "

        After quasar build command, I have no error at all.

        Just a blank page, and seems like <div id="q-app"></div> doesn’t show anything in both case.

        1 Reply Last reply Reply Quote 0
        • B
          BigAppear last edited by

          Resolved, no more blank page !

          Here is what I have done to make IE work, from this: http://forum.quasar-framework.org/topic/549/v0-14-ie11-edge-compatbility/13
          So:

          npm install --save es6-promise babel-polyfill
          

          Then in main.js, after uncommenting the two lines:

          import es6Promise from 'es6-promise'
          es6Promise.polyfill()
          import 'babel-polyfill'
          1 Reply Last reply Reply Quote 0
          • rstoenescu
            rstoenescu Admin last edited by rstoenescu

            @BigAppear
            Essentially this is what require('quasar/dist/quasar.ie') does. Why do you need that added?
            The instructions from docs should suffice: http://quasar-framework.org/guide/browser-support.html

            1 Reply Last reply Reply Quote 0
            • B
              BigAppear last edited by

              I had a blank page on internet explorer even if I didn’t import these, I don’t know why.
              However, uncommenting your lines seems to handle errors like buttons width on Edge.

              1 Reply Last reply Reply Quote 0
              • rstoenescu
                rstoenescu Admin last edited by

                Yes, but you don’t need the part below. Simply uncommenting the two requires that come with the template should suffice.

                //
                // Don't need these:
                //
                import es6Promise from 'es6-promise'
                es6Promise.polyfill()
                import 'babel-polyfill'
                
                1 Reply Last reply Reply Quote 0
                • B
                  BigAppear last edited by

                  I already uncommented your two lines, as I said. I had a blank page on Internet Explorer 11. Then, adding these 3 lines worked for me. I still don’t know why, but it worked, so yes, need it (at least for me)

                  1 Reply Last reply Reply Quote 0
                  • B
                    BigAppear last edited by

                    As this post says: http://forum.quasar-framework.org/topic/549/v0-14-ie11-edge-compatbility/16 , maybe I just need:

                    import 'babel-polyfill'
                    

                    But yes, I suppose I need at least this line. And as I see, you’ll add it to your package and that’s a good new 🙂

                    1 Reply Last reply Reply Quote 0
                    • First post
                      Last post