提交 33ee6486 编写于 作者: H hdx

browser-element: 调整示例:包含和uni-app重名组件的情况

上级 1162e7c1
...@@ -2,12 +2,13 @@ ...@@ -2,12 +2,13 @@
<view class="page"> <view class="page">
<page-head :title="title"></page-head> <page-head :title="title"></page-head>
<view class="page-body"> <view class="page-body">
<!-- 如何使用浏览器内置 element --> <text class="title">使用浏览器内置的 a 标签</text>
<text>使用浏览器内置的 a 标签</text> <view>
<view ref="html-element-area"></view> <a href="https://doc.dcloud.net.cn/uni-app-x/" target="uni-app-x">uni-app x,是下一代 uni-app,是一个跨平台应用开发引擎</a>
</view>
<text class="html-tips">HTML语法</text> <text class="title">使用浏览器内置的 button 标签(浏览器内置标签和 uni-app 重名的情况)</text>
<text class="html-tips-link">{{linkTips}}</text> <view ref="html-element-area"></view>
</view> </view>
</view> </view>
</template> </template>
...@@ -16,17 +17,14 @@ ...@@ -16,17 +17,14 @@
export default { export default {
data() { data() {
return { return {
title: '浏览器 element', title: '浏览器 element'
linkTips: `<a href="https://doc.dcloud.net.cn/uni-app-x/" target="uni-app-x">uni-app x,是下一代 uni-app,是一个跨平台应用开发引擎</a>`
} }
}, },
onReady() { onReady() {
const element = this.$refs['html-element-area'] as HTMLElement; const element = this.$refs['html-element-area'] as HTMLElement;
const linkElement = document.createElement('a') as HTMLLinkElement; const buttonElement = document.createElement('button') as HTMLButtonElement;
linkElement.href = 'https://doc.dcloud.net.cn/uni-app-x/'; buttonElement.innerText = 'browser button';
linkElement.innerText = 'uni-app x,是下一代 uni-app,是一个跨平台应用开发引擎'; element.appendChild(buttonElement);
linkElement.setAttribute('target', "uni-app-x");
element.appendChild(linkElement);
} }
} }
</script> </script>
...@@ -36,13 +34,7 @@ ...@@ -36,13 +34,7 @@
padding: 15px; padding: 15px;
} }
.html-tips { .title {
margin-top: 15px; margin-top: 15px;
} }
.html-tips-link {
font-size: 12px;
margin-top: 5px;
opacity: .7;
}
</style> </style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册