cyp/app/js/elements/artist.js

18 lines
302 B
JavaScript
Raw Normal View History

2020-03-12 05:46:28 +08:00
import * as html from "../html.js";
import Item from "../item.js";
export default class Artist extends Item {
constructor(name) {
super();
this.name = name;
}
connectedCallback() {
html.icon("artist", this);
this._buildTitle(this.name);
}
}
customElements.define("cyp-artist", Artist);