提交 c10fecc5 编写于 作者: D DCloud_LXH

chore: md -> html

上级 27259fa1
实人认证提供核验终端操作者的真实身份,包含活体检测和人脸对比等生物识别技术,可快速校验自然人的真实身份。
App平台端详细文档需另见:[业务介绍](https://doc.dcloud.net.cn/uniCloud/frv/intro.md)[开发指南](https://doc.dcloud.net.cn/uniCloud/frv/dev.html)
App平台端详细文档需另见:[业务介绍](https://doc.dcloud.net.cn/uniCloud/frv/intro.html)[开发指南](https://doc.dcloud.net.cn/uniCloud/frv/dev.html)
微信小程序端业务开发流程,请参考[微信人脸核身接口能力](https://developers.weixin.qq.com/community/business/doc/000442d352c1202bd498ecb105c00d)
......
......@@ -10,7 +10,7 @@
- [uni-template-news](https://github.com/dcloudio/uni-template-news):基于uni-app开发的新闻/资讯类App模板 -- by DCloud
- [uni-app 开发资源汇总](https://github.com/aben1188/awesome-uni-app/blob/master/README.md):uni-app 一站式学习资源/开发资源汇总 -- aben1188
- [uni-app 开发资源汇总](https://github.com/aben1188/awesome-uni-app/blob/master/README.html):uni-app 一站式学习资源/开发资源汇总 -- aben1188
- [colorUI for uni-app](https://ext.dcloud.net.cn/plugin?id=239):colorUI官方维护的uni-app版本,酷炫漂亮的css库 -- by 文晓港
......@@ -26,7 +26,7 @@
- [得推B2C商城](https://ext.dcloud.net.cn/plugin?id=187):一套简洁的B2C商城,全部功能完善,用户、下单、注册 -- by 得推网络科技
- [商城类项目模版](https://ext.dcloud.net.cn/plugin?id=200):漂亮的商城前端模板,可变背景导航栏、购物车、详情模板 -- by MixR
- [商城类项目模版](https://ext.dcloud.net.cn/plugin?id=200):漂亮的商城前端模板,可变背景导航栏、购物车、详情模板 -- by MixR
- [来客电商](http://www.laiketui.com/):包含前后台的完整项目 -- by 来客电商
......@@ -70,7 +70,7 @@
- [录音朗读fm](https://ext.dcloud.net.cn/plugin?id=1170):类喜马拉雅FM -- by https://ext.dcloud.net.cn/publisher?id=217187
- [教育APP首页](http://ext.dcloud.net.cn/plugin?id=216):教育APP首页 -- by snice
- [教育APP首页](http://ext.dcloud.net.cn/plugin?id=216):教育APP首页 -- by snice
- [店滴餐饮](https://ext.dcloud.net.cn/plugin?id=1381):饭店外卖系统 -- by http://www.wayfirer.com/
......
......@@ -12,4 +12,4 @@
├── package.nls.json
└── package.nls.ja.json
```
其中语言代码必须符合规范,[点击查看更多语言代码](https://github.com/dcloudio/hbuilderx-language-packs/blob/main/docs/localizations.md)
\ No newline at end of file
其中语言代码必须符合规范,[点击查看更多语言代码](https://github.com/dcloudio/hbuilderx-language-packs/blob/main/docs/localizations.html)
\ No newline at end of file
> 已经了解 Vue 2,只想了解 Vue 3 的新功能可以参阅[vue3新功能](https://v3.cn.vuejs.org/guide/migration/introduction.html#%E6%A6%82%E8%A7%88)!
>
>
> 已经有 Vue 2项目,需要适配 Vue 3 的可参阅[vue2 项目迁移 vue3](https://uniapp.dcloud.io/migration-to-vue3)!
......@@ -113,7 +113,7 @@
```
2. `index.vue` 里可直接使用组件
```html
<template>
......@@ -146,7 +146,7 @@
<script>
import uniBadge from '@/components/uni-badge/uni-badge.vue';//1.导入组件(这步属于传统vue规范,但在uni-app的easycom下可以省略这步)
export default {
components:{uniBadge }//2.注册组件(这步属于传统vue规范,但在uni-app的easycom下可以省略这步)
components:{uniBadge }//2.注册组件(这步属于传统vue规范,但在uni-app的easycom下可以省略这步)
}
</script>
```
......@@ -290,7 +290,7 @@
```html
<!-- 动态赋予一个变量的值 -->
<blog-post :title="post.title"></blog-post>
<!-- 动态赋予一个复杂表达式的值 -->
<blog-post :title="post.title + ' by ' + post.author.name"></blog-post>
```
......@@ -349,7 +349,7 @@
<!-- 即便对象是静态的,我们仍然需要 `v-bind` 来告诉 Vue -->
<!-- 这是一个 JavaScript 表达式而不是一个字符串。-->
<blog-post :author="{ name: 'Veronica',company: 'Veridian Dynamics'}"></blog-post>
<!-- 用一个变量进行动态赋值。-->
<blog-post :author="post.author"></blog-post>
```
......@@ -1234,7 +1234,7 @@
### 插槽内容
Vue 实现了一套内容分发的 API,这套 API 的设计灵感源自 [Web Components 规范草案](https://github.com/WICG/webcomponents/blob/gh-pages/proposals/Slots-Proposal.md),将 `<slot>` 元素作为承载分发内容的出口。
Vue 实现了一套内容分发的 API,这套 API 的设计灵感源自 [Web Components 规范草案](https://github.com/WICG/webcomponents/blob/gh-pages/proposals/Slots-Proposal.html),将 `<slot>` 元素作为承载分发内容的出口。
它允许你像这样合成组件:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册