9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
|
|
export default class extends Controller {
|
|
toggle() {
|
|
const accordionList = this.element.nextElementSibling
|
|
this.element.lastElementChild.classList.toggle('rotate-180')
|
|
accordionList.classList.toggle('opened')
|
|
}
|
|
}
|