提交 85bd1f66 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

refactor(builtIn template): 优化示例

上级 84fcdd8b
......@@ -3,9 +3,12 @@
<template v-if="dataInfo.isShow">
<text id="title">{{ title }}</text>
</template>
<template v-else>
<text>隐藏标题时显示</text>
</template>
<button id="show-botton" @click="handleShow">{{ dataInfo.isShow ? '点击隐藏' : '点击显示' }}</button>
<template v-for="(item, index) in list" :key="index">
<view class="item">{{ index + 1 }}.{{ item.name }}</view>
<text :class="'item'">{{ index + 1 }}.{{ item.name }}</text>
</template>
<button @click="goMapStyle">跳转绑定 Map 类型 style 页面</button>
</view>
......@@ -49,9 +52,8 @@ defineExpose({
<style>
.item {
display: flex;
flex-direction: row;
margin: 15px;
padding: 4px 8px;
border: #eee solid 1px;
}
</style>
\ No newline at end of file
......@@ -3,9 +3,12 @@
<template v-if="dataInfo.isShow">
<text id="title">{{ title }}</text>
</template>
<template v-else>
<text>隐藏标题时显示</text>
</template>
<button id="show-botton" @click="handleShow">{{ dataInfo.isShow ? '点击隐藏' : '点击显示' }}</button>
<template v-for="(item, index) in list" :key="index">
<view class="item">{{ index + 1 }}.{{ item.name }}</view>
<text :class="'item'">{{ index + 1 }}.{{ item.name }}</text>
</template>
<button @click="goMapStyle">跳转绑定 Map 类型 style 页面</button>
</view>
......@@ -47,9 +50,8 @@ export default {
<style>
.item {
display: flex;
flex-direction: row;
margin: 15px;
padding: 4px 8px;
border: #eee solid 1px;
}
</style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册