From c5e69f00df87e234514403687371c66f86b3b164 Mon Sep 17 00:00:00 2001 From: shutao Date: Sat, 12 Oct 2024 17:29:54 +0800 Subject: [PATCH] update uts-vue-component.md --- docs/plugin/uts-vue-component.md | 149 +++++++++++++++++++++++++++++-- 1 file changed, 144 insertions(+), 5 deletions(-) diff --git a/docs/plugin/uts-vue-component.md b/docs/plugin/uts-vue-component.md index b451cf1e..979f8243 100644 --- a/docs/plugin/uts-vue-component.md +++ b/docs/plugin/uts-vue-component.md @@ -60,7 +60,7 @@ HBuilder X 选中你的项目,项目根目录选中uni_modules目录,右键 构建标准模式组件后,HBuilder X 会自动创建components/native-button/native-button.uvue文件,在该文件编写代码添加 native-view 标签 -```ts +```html @@ -72,11 +72,33 @@ native-view 初始化会触发 @init 事件,此时创建NativeButton对象,n [NativeButton](#实现nativebutton对象)是在utssdk目录构建的原生对象。NativeButton对象内部处理原生view与native-view绑定关联业务 -```ts +::: preview + +> 组合式 API + +```html + + +``` + +> 选项式 API + +```html -... ... + ``` #### 组件声明方法 在 methods 节点中添加updateText方法,native-button组件使用者可调用该方法更新native-button文案。 [页面调用组件方法](https://doc.dcloud.net.cn/uni-app-x/vue/component.html#page-call-component-method) +::: preview + +> 组合式 API + +```ts + +``` + +> 选项式 API + ```ts methods: { //对外函数 @@ -112,6 +153,29 @@ methods: { native-button 声明props,例如native-button的文案信息text属性,按vue规范监听到text属性更新,通过NativeButton对象驱动更新原生view属性,在components/native-button/native-button.uvue编写如下代码,具体参考[vue组件Props规范](https://cn.vuejs.org/guide/components/props.html) +::: preview + +> 组合式 API + +```html + +``` + +> 选项式 API + ```html +``` + +> 选项式 API + ```html