Grand finale — VUE plugin base development

ManiKanta Koppala
Vue.js Developers
Published in
1 min readFeb 9, 2020

(Note: This is one of the articles written in a series of vue plugin-based development. If you are new, please check out the whole story here)

If you follow along the complete journey. Give yourself a tap on your back you deserve it. So in our journey, we say

  1. How to use mono repo
  2. Building a vue application as a plugin
  3. How to inject those plugins in any vue application
  4. How we improved the 3 main layers for front end development

Now combining all these pieces together let's see how we can build an application.

As our all our packages (users, notification, core) are published in the npm repository. All we have to do is,

  1. vue create my-final-app
  2. npm i — save @myapp/user @myapp/notification @myapp/core
  3. initTheCore
  4. Pass some configurations

Done all our user, notification modules are ready to be served.

--

--