[Vuejs]-How to build vue views from within electron apps to mount as plugins

0👍

You could watch the directory and respond to new files being add. That’s for the dynamic part of your question. A nice way is node-fs.

Using the same lib you can serialize and deserialize object to or from file, letting you load the file from your user.

At this point, you only need to be able to change back and forth from an object to a Vue component. As far As I know, this is no problem as you can

new Vue (object)

Leave a comment