Framework7-Vue compile template in runtime

Hello!

Can I use the following plugin in my FW7+Vue 3 app? https://github.com/mattelen/vue3-runtime-template

I followed it’s docs and there are no errors, however the template that I’m tryin’ to render is empty in DOM.

Also I’m little confused about how should I edit my vue.config.js file to make this work. According plugin documentation it should point to vue.esm-bundler.js file this way.

module.exports = {
  runtimeCompiler: true,
  configureWebpack: {
    resolve: {
      alias: {
        vue$: "vue/dist/vue.esm-bundler.js"
      }
    }
  }
};

So, should I create vue.config.js in node_modules/vue folder or in the root folder of my app?