04 vue - 单文件组件定义与使用

Posted feihusurfer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了04 vue - 单文件组件定义与使用相关的知识,希望对你有一定的参考价值。

1、组件的定义

<template name="组件名称">
    <view>
        ......
    </view>
</template>
<script>
export default {
    name: "组件名称",
    //组件外层属性
    props: {
        属性名称: {
            type: String,//属性类型
            value: "值"
        },
        ......
    },
    //组件生命周期
    created:function(e){
    
    },
//组件内部方法 methods: { 函数名称:function(obj){ }, } } </script> <style> 组件样式 </style>

2、组件的使用

1、引用依赖的组件
import 组件名称 from "../../components/组件名.vue";
2、导出本组件时声明依赖的组件
export default{
    components:{
        组件名称
    },
}
3、在试图模板中使用组件
<组件名称 组件属性="对应的值"></组件名称>

 

以上是关于04 vue - 单文件组件定义与使用的主要内容,如果未能解决你的问题,请参考以下文章

vue-04-组件

Vue3.0 单文件组件 - SFC语法定义

Vue3基础知识总结

Vue3基础知识总结

Vue3基础知识总结

vue 通过 component 动态渲染组件