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

    Integrating Quasar with WYSIWYG editors

    Framework
    3
    3
    1677
    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.
    • G
      genyded last edited by

      Is there away to switch from the Vue run-time or get things like most wsyiwyg editors working in tandem with Quasar? Tired almost everyone out there and they are error with:

      You are using the runtime-only build of Vue where the template option is not available. Either pre-compile the templates into render functions, or use the compiler-included build.

      Most of these editors (such as https://github.com/Haixing-Hu/vue-html-editor) use npm install then something like:

      var Vue = require("vue");
      
      var vm = new Vue({
        el: "#app",
        components: {
          "vue-html-editor": require("vue-html-editor")
        }
      });
      

      But apparently any add-on component in Quasar has to be pre-compiled??

      1 Reply Last reply Reply Quote 0
      • s.molinari
        s.molinari last edited by

        Have you seen this?

        https://github.com/vuejs/vue/wiki/Vue-2.0-RC-Starter-Resources#standalone-vs-runtime-builds

        Scott

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

          Edit /config/index.js and add a resolve line for Vue targeting vue/dist/vue.js so it will embed the compiler too. Bare in mind that Vue performance decreases when including the compiler too!

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