组件

iView-admin内部封装了很多业务组件,方便使用者使用,这些组件都在./src/components目录下,使用时可使用便捷方式引入,如使用count-to组件时:

  1. <template>
  2. <count-to :end="12"/>
  3. </template>
  4. <script>
  5. import CountTo from '_c/count-to' // 这里的_c是在./vue.config.js中定义的,等效./src/components
  6. export default {
  7. components: {
  8. CountTo
  9. }
  10. }
  11. </script>

原文: https://lison16.github.io/iview-admin-doc/#/组件