当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript dompteuse.h函数代码示例

本文整理汇总了TypeScript中dompteuse.h函数的典型用法代码示例。如果您正苦于以下问题:TypeScript h函数的具体用法?TypeScript h怎么用?TypeScript h使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了h函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: input

function input(name: string, value: string) {
  return h('label', [
    name,
    h('input', {
      props: { name },
      forceProps: { value }
    })
  ])
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:9,代码来源:green.ts

示例2: render

function render(props: Props, state: State) {
  const { text } = props
  const { opened } = state

  return h('div.red', { class: { opened } }, [
    h('button', 'Toggle'),
    h('p', text)
  ])
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:9,代码来源:red.ts

示例3: render

function render(props: void, state: State) {
  return h('div', [
    h('header', [
      h('a', { attrs: { href: router.link('app.index'), 'data-nav': 'mousedown' } }, 'Index'),
      h('a', { attrs: { href: router.link('app.blue', { id: 33 }), 'data-nav': 'mousedown' } }, 'Blue'),
      String(state.count)
    ]),
    contentAnimation('main', getChildren(state.route))
  ]);
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:10,代码来源:app.ts

示例4: render

function render(props: void, state: State) {
  const { id, form, redText } = state
  const { firstName, lastName } = form

  return h('div#green', [
    `Green (route id = ${id})`,
    h('form', [
      input('firstName', firstName),
      input('lastName', lastName)
    ]),
    red({ text: redText })
  ])
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:13,代码来源:green.ts

示例5: getChildren

function getChildren(state: State) {
  const { route } = state

  if (route === 'app.blue') return [h('span', 'I am blue')]
  if (route === 'app.blue.green') return [green()]
  if (route === 'app.blue.red') return [red({ openedByDefault: true }), red()]
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:7,代码来源:blue.ts

示例6: function

 return function(sel: string, child: Vnode[]) {
   const props: any = {
     key: 'animationHook',
     animations,
     hook: { prepatch, postpatch }
   }
   return h(sel, props, child)
 };
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:8,代码来源:animation.ts

示例7: render

function render(props: void, state: State) {
  const { id, route } = state

  return h('div#blue', [
    h('h1', 'Blue screen'),
    h('a', { attrs: { href: router.link('app.blue.green', { id }), 'data-nav': 'mousedown' } }, 'Green'),
    h('a', { attrs: { href: router.link('app.blue.red', { id }), 'data-nav': 'mousedown' } }, 'Red'),
    h('div.increment', [
      'Count: ' + state.count,
      h('button', 'Increment')
    ]),
    contentAnimation('section', getChildren(state))
  ])
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:14,代码来源:blue.ts

示例8: function

export default function() {
  return h('h1', 'Index')
}
开发者ID:pgn-vole,项目名称:dompteuse,代码行数:3,代码来源:index.ts


注:本文中的dompteuse.h函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。