UNPKG

oxe

Version:

A mighty tiny web components framework/library

33 lines (31 loc) 486 B
export default { name: 'c-menu', model: { text: 'text from menu' }, created: function () { console.log('created c-menu'); }, style: ` :host { --g: gray; --r-e-d: red; } :host ul { background: var(--g); } :host li { background: var(--r-e-d); } `, template: ` <ul> <c-foo> <div slot="sub" o-text="text"></div> </c-foo> <slot name="one"></slot> <slot name="two"></slot> <slot></slot> </ul> ` };