目前支持文本入口,能否增加图标入口支持? ``` // .vuepress/config.js module.exports = { plugins: [ ['qrcode',{ // "/" and "/zh/" correspond to the path set by locales labelIcon: { '/': 'QRCode', '/en/': 'QRCode', '/zh/': 'QRCode', }, size:'small' // QR code size }] ] } ```