vue的data(data: {})值为null时,模板取{{data.notice}},模板编译报错:Cannot read property ‘notice‘ of null。导致了后续dom显示
问题举例:
// dom1
<div class="box-message">
<div class="box-message-ct">
<div
v-if="data.notice?.length > 30"
class="scrolling-notification"
...