<view>
<view> 是基础的通用容器,类似于Html中的<div>标签
WARNING
<view>标签中默认不支持滚动,有滚动的场景请使用<scroller>组件
<view>标签中不支持直接写文本,如果需要文本请使用<text>组件进行包裹
样式
通用样式,可参考样式介绍
事件
通用事件,可参考事件介绍
示例
Tenon Vue
html
<!-- App.vue -->
<template>
<view>
<text>Hello World!</text>
</view>
</template>
<script>
export default{}
</script>
更多用法,可参考Tenon Vue 官方示例。
Tenon React
jsx
import React from "react"
import Tenon from "@hummer/tenon-react"
function ViewApp() {
return (
<view>
<text>
Hello Tenon React!
</text>
</view>
);
}
Tenon.render(<ViewApp />)
更多用法,可参考Tenon React 官方示例。