OneSignal / onesignal-vue

Vue OneSignal Plugin: Make it easy to integrate OneSignal with your Vue App!
Other
13 stars 2 forks source link

Vue3 support #11

Closed youmax210139 closed 2 years ago

youmax210139 commented 2 years ago

Since Vue changed global API usage, the install method would throw error in 3.x version

    //2.x 
    app.prototype.$OneSignal = OneSignalVue as IOneSignal;

should be

    //3.x 
    app.config.globalProperties.$OneSignal = OneSignalVue as IOneSignal;

the rest method seems work properly, could you let the plugin support v3?

youmax210139 commented 2 years ago

Sorry, duplicate issue