DingRui12138 / vue-pdf-viewer

MIT License
18 stars 11 forks source link

在form表单中预览点击头部按钮会刷新页面 #7

Open xiaopin opened 2 years ago

xiaopin commented 2 years ago

如题,我有个需求是在form表单中进行预览,所以我毫不犹豫地将 PDFViewer 组件嵌套在 el-form 组件内,大概代码如下:

<el-form>
    <el-form-item>
        <PDFViewer />
    </el-form-item>
</el-form>

当我点击头部的缩放、下载、打印等按钮时,我的页面会刷新,因为 IconButton.vue 组件中的 button 未指定 type 属性,默认的 type 属性值是 submit,所以点击这些按钮会触发我表单的提交,从而导致刷新页面。

目前我的做法是阻止我表单提交,但是希望作者能够指定下 type="button" 以消除潜在的问题。

再次感谢作者写出这么好用的组件!!!

附上关于 type 的说明 :https://www.runoob.com/tags/att-button-type.html