组件
iView-admin内部封装了很多业务组件,方便使用者使用,这些组件都在./src/components
目录下,使用时可使用便捷方式引入,如使用count-to
组件时:
<template>
<count-to :end="12"/>
</template>
<script>
import CountTo from '_c/count-to' // 这里的_c是在./vue.config.js中定义的,等效./src/components
export default {
components: {
CountTo
}
}
</script>