(function() { Vue.component('nodata', { template: '
\ \
找不到您查询的内容
\
', props: ["arr",'needShow'], //可以传数组 可以传显隐 data: function() { return { } }, computed: { hasData:function(){ return (arr && arr.length>0) || needShow } } }) })()