vue3 script setup 单文件组件,生产环境正常显示、打包后无法显示页面

img


在本地一切正常,放在生产环境,setup中代码能运行,但是页面不渲染template内标签
组件代码如下:


<template>
  <div>
    <el-button type="primary">按钮</el-button>
    <h2>这是h2标题</h2>
    <a>{{ msg }}</a>
  </div>
</template>

<script setup>
let msg = 'Hello';
const func = () => {
  msg += 'world';
  if (msg === 'Helloworld') {
    sessionStorage.setItem('idd', JSON.stringify(msg));
  }
};
setTimeout(() => func(), 2000);
</script>