## 组件基本定义方法
```
<style lang='less'>
</style>
<template>
<div>
<height-camera :isOpen="face_shows2" @ret-fun="retFun"></height-camera>
<span>{{sum}}</span>
</div>
</template>
<script>
import { mailList } from '@/api/eventlist'
import HeightCamera from '_c/height-camera'
export default {
components: {
// 页面用到的组件
HeightCamera
},
props:['a','b','c'],
data () {
// 页面的变量定义
return {
face_shows2: true
}
},
computed: {
// 计算属性
sum () {
return 100
}
},
methods: {
// 页面里面用到的所有函数
fun1 () {},
fun2 (data) {
this.$emit('ret-fun', data)
}
},
mounted () {
// 初始化的js代码
mailList().then(ret => {}) // 调用接口
}
}
</script>
```
- vue学习方向
- iview-admin项目说明
- 快速开始
- 开发工具
- 开始开发
- 接口的定义和调用
- 常用函数汇总
- 组件的定义
- iview开发规范说明
- 插件使用说明
- 时间插件
- 命名规范
- vue变量函数规则
- 接口嵌套使用说明
- 组件建立说明
- vue使用规范
- 数据检测特别说名
- iview-layout-themes
- util
- common
- xeUtils详细说明
- form表单自动生成
- theme1使用说明
- theme2使用说明
- hd-login登录组件说明
- wl-upload-files图片上传组件
- wl-upload-imgs
- wl-upload-oss-files
- wl-read-excel
- wl-dir-upload选择文件架
- system组件说明
- 机构管理wl-company-manager
- 用户管理
- wl-excel-import Excel数据导入
- 前台使用说明
- 后台使用说明
- Excel使用说明
- wl-vue2-editor
- 字符串截取方法
- redis常用说明
- 推荐redis使用规范