• 表格打印
    • 普通用法

    表格打印

    常用的表格打印功能

    普通用法

    打印 - 图1

    printBtn设置为true即可开启打印功能,如果配置了selection属性,则需要勾选打印的数据,否则为全部

    1. <avue-crud :option="option" :data="data"></avue-crud>
    2. <script>
    3. export default {
    4. data(){
    5. return {
    6. data:[{
    7. text1:'内容1-1',
    8. text2:'内容1-2'
    9. },{
    10. text1:'内容2-1',
    11. text2:'内容2-2'
    12. }],
    13. option:{
    14. align:'center',
    15. printBtn:true,
    16. addBtn:false,
    17. menu:false,
    18. column: [{
    19. label: '列内容1',
    20. prop: 'text1',
    21. }, {
    22. label: '列内容2',
    23. prop: 'text2',
    24. }]
    25. }
    26. }
    27. }
    28. }
    29. </script>