12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
|
// app/javascript/controllers/share_controller.js
|
||
|
import { Controller } from "@hotwired/stimulus"
|
||
|
import Sharer from "sharer.js"
|
||
|
|
||
|
export default class extends Controller {
|
||
|
static targets = ["button"]
|
||
|
|
||
|
connect() {
|
||
|
// 初始化 sharer.js
|
||
|
window.Sharer.init()
|
||
|
}
|
||
|
}
|