mirror of
https://github.com/wallabag/wallabag.git
synced 2025-05-04 07:34:42 +00:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
import M from '@materializecss/materialize';
|
|
|
|
export default class extends Controller {
|
|
connect() {
|
|
this.instance = M.Tabs.init(this.element);
|
|
}
|
|
|
|
disconnect() {
|
|
this.instance.destroy();
|
|
}
|
|
}
|