import { Component } from 'san'; class Label extends Component { components = { 'ui-label': Label } template = 'label' initData () { return { styles: { main: { position: 'fixed', display: 'block' } }, classes: { main: ['ui', 'ui-label'] } } } } export default class MyComponent extends Component { components = { 'ui-label': Label } template = '

' initData () { return { styles: { main: { width: '50px', height: '50px' }, title: { width: '50px', height: '20px' } }, classes: { main: ['app', 'main'], title: ['app-title', 'main-title'] } } } }