<template>
<div name="wrapper">
<div class="content"
v-show="isShow"
@touchmove="onTouchMove()"
>
<div class="content">
<slot name="content">
<div v-if="typeof content === 'string'" v-html="content"></div>
<vnode v-else :node="content" />
</slot>
</div>
</div>
</div>
比如说这是个model组件,外部可以插槽自定义标签,该如何写测试用例呢