universal-vue / uvue

Vue CLI plugin to create universal Vue applications with ease
https://universal-vue.github.io/docs/
MIT License
127 stars 13 forks source link

inject: check first if Vue prototype key exists. #55

Open phlegx opened 3 years ago

phlegx commented 3 years ago

What kind of change does this PR introduce?

Function inject uses prototype for Vue to inject a new object without to check if the key already exists.

What is the current behavior?

No property check before inject new object. Results in an error.

What is the new behavior?

Function inject tests if the key already exists in Vue. If the key exists, adding is skipped for Vue object.

Checklist: