mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
42 lines
5.0 KiB
JavaScript
42 lines
5.0 KiB
JavaScript
import{o as n,a,y as t}from"./vue-libs.b44bc779.js";const e={class:"van-doc-markdown-body"},l=t(`<h1>useRelation</h1><div class="van-doc-card"><h3 id="intro" tabindex="-1">Intro</h3><p>Establish the association relationship between parent and child components, perform data communication and method invocation, based on <code>provide</code> and <code>inject</code> implementation.</p></div><h2 id="usage" tabindex="-1">Usage</h2><div class="van-doc-card"><h3 id="basic-usage" tabindex="-1">Basic Usage</h3><p>Use <code>useChildren</code> in parent to associate child components:</p><pre><code class="language-js"><span class="hljs-keyword">import</span> { ref } <span class="hljs-keyword">from</span> <span class="hljs-string">'vue'</span>;
|
|
<span class="hljs-keyword">import</span> { useChildren } <span class="hljs-keyword">from</span> <span class="hljs-string">'@vant/use'</span>;
|
|
|
|
<span class="hljs-keyword">const</span> <span class="hljs-variable constant_">RELATION_KEY</span> = <span class="hljs-title class_">Symbol</span>(<span class="hljs-string">'my-relation'</span>);
|
|
|
|
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> {
|
|
<span class="hljs-title function_">setup</span>(<span class="hljs-params"></span>) {
|
|
<span class="hljs-keyword">const</span> { linkChildren } = <span class="hljs-title function_">useChildren</span>(<span class="hljs-variable constant_">RELATION_KEY</span>);
|
|
|
|
<span class="hljs-keyword">const</span> count = <span class="hljs-title function_">ref</span>(<span class="hljs-number">0</span>);
|
|
<span class="hljs-keyword">const</span> <span class="hljs-title function_">add</span> = (<span class="hljs-params"></span>) => {
|
|
count.<span class="hljs-property">value</span>++;
|
|
};
|
|
|
|
<span class="hljs-comment">// provide data and methods to children</span>
|
|
<span class="hljs-title function_">linkChildren</span>({ add, count });
|
|
},
|
|
};
|
|
</code></pre><p>Use <code>useParent</code> in child component to get the data and methods provided by parent.</p><pre><code class="language-js"><span class="hljs-keyword">import</span> { useParent } <span class="hljs-keyword">from</span> <span class="hljs-string">'@vant/use'</span>;
|
|
|
|
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> {
|
|
<span class="hljs-title function_">setup</span>(<span class="hljs-params"></span>) {
|
|
<span class="hljs-keyword">const</span> { parent } = <span class="hljs-title function_">useParent</span>(<span class="hljs-variable constant_">RELATION_KEY</span>);
|
|
|
|
<span class="hljs-comment">// use data and methods provided by parent</span>
|
|
<span class="hljs-keyword">if</span> (parent) {
|
|
parent.<span class="hljs-title function_">add</span>();
|
|
<span class="hljs-variable language_">console</span>.<span class="hljs-title function_">log</span>(parent.<span class="hljs-property">count</span>.<span class="hljs-property">value</span>); <span class="hljs-comment">// -> 1</span>
|
|
}
|
|
},
|
|
};
|
|
</code></pre></div><h2 id="api" tabindex="-1">API</h2><div class="van-doc-card"><h3 id="type-declarations" tabindex="-1">Type Declarations</h3><pre><code class="language-ts"><span class="hljs-keyword">function</span> useParent<T>(<span class="hljs-attr">key</span>: <span class="hljs-built_in">string</span> | <span class="hljs-built_in">symbol</span>): {
|
|
parent?: T;
|
|
index?: <span class="hljs-title class_">Ref</span><<span class="hljs-built_in">number</span>>;
|
|
};
|
|
|
|
<span class="hljs-keyword">function</span> <span class="hljs-title function_">useChildren</span>(<span class="hljs-params">key: <span class="hljs-built_in">string</span> | <span class="hljs-built_in">symbol</span></span>): {
|
|
<span class="hljs-attr">children</span>: <span class="hljs-title class_">ComponentPublicInstance</span>[];
|
|
<span class="hljs-attr">linkChildren</span>: <span class="hljs-function">(<span class="hljs-params">value: <span class="hljs-built_in">any</span></span>) =></span> <span class="hljs-built_in">void</span>;
|
|
};
|
|
</code></pre></div><div class="van-doc-card"><h3 id="return-value-of-useparent" tabindex="-1">Return Value of useParent</h3><table><thead><tr><th>Name</th><th>Description</th><th>Type</th></tr></thead><tbody><tr><td>parent</td><td>Data and methods provided by parent</td><td><em>any</em></td></tr><tr><td>index</td><td>Index position of the current component in all child of the parent component</td><td><em>Ref<number></em></td></tr></tbody></table></div><div class="van-doc-card"><h3 id="return-value-of-usechildren" tabindex="-1">Return Value of useChildren</h3><table><thead><tr><th>Name</th><th>Description</th><th>Type</th></tr></thead><tbody><tr><td>children</td><td>Component list of children</td><td><em>ComponentPublicInstance[]</em></td></tr><tr><td>linkChildren</td><td>Function to provide values to child</td><td><em>(value: any) => void</em></td></tr></tbody></table></div>`,8),p=[l],h={__name:"use-relation.en-US",setup(c,{expose:s}){return s({frontmatter:{}}),(d,i)=>(n(),a("div",e,p))}};export{h as default};
|