cyp/app/js/elements/playlist.js
2020-03-10 22:11:36 +01:00

17 lines
324 B
JavaScript

import * as html from "../html.js";
import { Item } from "../component.js";
export default class Playlist extends Item {
constructor(name) {
super();
this.name = name;
}
connectedCallback() {
html.icon("playlist-music", this);
this._buildTitle(this.name);
}
}
customElements.define("cyp-playlist", Playlist);