UNPKG

ttk-app-core

Version:
24 lines (23 loc) 409 B
export function getMeta() { return { name: 'root', component: '::div', children: [{ name: 'hello', component: '::span', children: '{{data.content}}' }/*,{ name:'ok', component:'::button', children:'OK', onClick:'{{$btnClick}}' //btnClick在action中声明 }*/] } } export function getInitState() { return { data: { content: 'hello world' } } }