custom elements ts:使用Typescript创建本机自定义元素 源码
自定义元素 使用Typescript创建本机自定义元素,而不使用任何第三方库。 npm install custom-elements-ts 用法 import { CustomElement } from 'custom-elements-ts' ; @ CustomElement ( { tag : 'counter-element' , templateUrl : 'counter-element.html' , styleUrl : 'counter-element.scss' } ) export class CounterElement extends HTMLEl
用户评论