page contents

vue.cli中怎样使用自定义的组件 有遇到过哪些问题吗?

轩辕小不懂 发布于 2021-12-24 13:58
阅读 537
收藏 0
分类:WEB前端开发
  • vue
  • 2726
    Nen
    Nen
    - 程序员

    第一步:在components目录新建你的组件文件(smithButton.vue),script一定要export default

    第二步:在需要用的页面(组件)中导入:import smithButton from ‘../components/smithButton.vue’

    第三步:注入到vue的子组件的components属性上面,components:{smithButton}

    第四步:在template视图view中使用, 问题有:smithButton命名,使用的时候则smith-button。

    请先 登录 后评论