mirror of
https://github.com/czhu12/canine.git
synced 2025-12-31 00:10:14 -06:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
import Apex from "../apex";
|
|
import { Controller } from "@hotwired/stimulus"
|
|
|
|
export default class extends Controller {
|
|
static values = {
|
|
dataset: Array,
|
|
}
|
|
|
|
connect() {
|
|
new Apex(this.element, this.datasetValue).render();
|
|
}
|
|
}
|