mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
|
import { Controller } from '@hotwired/stimulus';
|
||
|
import jrQrcode from 'jr-qrcode';
|
||
|
|
||
|
export default class extends Controller {
|
||
|
static values = { url: String };
|
||
|
|
||
|
connect() {
|
||
|
this.element.setAttribute('src', jrQrcode.getQrBase64(this.urlValue));
|
||
|
}
|
||
|
}
|