上面的显示,下面的直接显示为文本了,这该咋弄?
<template>
<view>
<text class="ico iconFace"></text>
<text class="ico iconFace">{{ico}}</text>
</view>
</template>
<script>
export default {
data() {
return {
ico: ""
}
}
}
</script>
<style>
.ico {
font-size: 24px;
color: #000;
margin: 5px;
}
</style>
0 个回复