APP-NVUE view嵌套的情况下未完全包裹文本
<template>
<view style="display: flex;flex-direction: row;background-color: violet;">
<text style="flex: 1; width: 0;word-wrap: break-word;">445544554455445544554455445544554455445544554455</text>
</view>
<view style="display: flex;flex-direction: row; background-color: red;">
<view style="display: flex;flex-direction: row;flex: 1;background-color: bisque;">
<text style="flex: 1; width: 0;word-wrap: break-word;">445544554455445544554455445544554455445544554455</text>
</view>
<view style="display: flex;flex-direction: row;flex: 1;background-color: blue">
<text style="flex: 1; width: 0;word-wrap: break-word;">6677667766776677667766776677667766776677667766776677667766776677</text>
</view>
</view>
</template>