---
name: WebView
title: 网页容器
category: 开放能力
owner: 郭勇
---

## 示例

```atom 基础示例

<template>
    <view>
        <web-view src="http://m.baidu.com/s?wd=NBA">
    </view>
</template>

<script type="config">
    {
        components: {
            'view': 'components/View/View',
            'web-view': 'components/WebView/WebView'
        }
    }
</script>

<style scoped>

</style>

```

## API
### Props


名称 | 类型 | 默认值 | 是否必选 | 描述 | 其他
--- | --- | --- | --- | --- | ----
src | string |  | 可选 | webview&nbsp;指向网页的链接 | -






