vue2-qr
Version:
**English** | [中文](./README.zh-CN.md) ## Introduction A plugin suitable for vue2.x with a QR code in the center with a logo. ## Example <img src="./img/npmjs.com.png" width="300">
15 lines (11 loc) • 315 B
JavaScript
import Vue2Qrcode from "./components/Vue2Qrcode.vue";
const components = [Vue2Qrcode];
const install = function (Vue) {
components.forEach((component) => {
Vue.component(component.name, component);
});
};
if (typeof window !== "undefined" && window.Vue) {
install(window.Vue);
}
export { Vue2Qrcode };