问题:
element-ui中的Drawer 抽屉组件在使用时没有样式?
不知道为什么
效果如下图:
代码如下:
<el-button @click="drawer = true" type="primary" style="margin-left: 16px;">
点我打开
</el-button>
<el-drawer
title="我是标题"
:size="800"
:visible.sync="drawer"
:modal-append-to-body="'true'"
:append-to-body="'true'"
:direction="direction"
:before-close="handleClose">
<span>我来啦!</span>
</el-drawer>
是不是其他的组件也没样式?