mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-10-05 02:29:57 +08:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
/**
|
||
* @name ConfigQrcodePlugin
|
||
* @description 引入qrcode插件,用于在浏览器中显示当前页面的二维码
|
||
*/
|
||
|
||
import { qrcode } from 'vite-plugin-qrcode';
|
||
|
||
export const ConfigQrcodePlugin = () => {
|
||
return qrcode();
|
||
};
|