vue2-simplert-plugin
When we using vue2-simplert, we will need to import the library in every place we need. This is very bored because we do same task in many place. In vue2-simplert we need to access method inside using $refs which is not recommended. For solving those problems I reborn vue2-simplert as Vue.js Plugins and using EventBus for open/close.
Install
Yarn
NPM
How to use
Import in your root project
Usually main.js
or index.js
from v0.4.0 you need to add
vue2-simplert-plugin.css
Or, with customize default config which still can be overrided.
for more Methods and Props
Add template in your root Vue
Usually App.vue
Open/Close Popup
For open popup :
Object that pass is same with vue2-simplert, please read wiki.
For close popup :
Migration from vue2-simplert
If you already use vue2-simplert in your project, please follow this below guide :
- Make sure you add dependency
npm i vue2-simplert-plugin --save
- Import and use this plugin in your main app, ex :
main.js
- Remove all import vue2-simplert in your components and/or pages, because as Plugin you dont need to import in all components
- Remove all adding component vue2-simplert in your components and/or pages, because you dont need set components again
- Remove all template html snippet in each components
- Add new html snippet in root application, ex :
App.vue
- Change all call method open with new plugin method, you dont need to change all configuration
- And DONE :+1: !!!