您好,我在安装了 vue-cli-plugin-iview2.0.0后 使用Button等都编译正常,使用 Row与Col 布局却编译失败,例如这样: <template id="app"> <Row type="flex"> <Col span="6" order="4">1 | order-4</Col> <Col span="6" order="3">2 | order-3</Col> <Col span="6" order="2">3 | order-2</Col> <Col span="6" order="1">4 | order-1</Col> </Row> </template> <script> export default { name: 'app', components: { } } </script>