uni-app icon indicating copy to clipboard operation
uni-app copied to clipboard

[Bug Mp-Weixin]: 在模板内无法使用基本类型变量

Open skiyee opened this issue 1 year ago • 0 comments
trafficstars

基本类型无法正常渲染,但引用类型可以

<script lang="ts" setup>

const stringEx = 'Hello There'

const objectEx = {
  name: '张三'
}
</script>

<template>
  <view>
    {{ stringEx }}
  </view>
  <view> 
    {{ objectEx.name }} 
  </view>
</template>

版本:3.0.0-alpha-4010920240606001

skiyee avatar Jun 18 '24 06:06 skiyee