Home  >  Article  >  Web Front-end  >  How to use props in vue

How to use props in vue

下次还敢
下次还敢Original
2024-05-02 21:21:33914browse
<blockquote><p>In Vue, props are used to pass data between components. Declare the props received by the child component in the parent component, use the props option in the child component to receive it, and use :prop-name="data" to pass data. Vue allows you to specify prop types to ensure the correctness of passed data, and you can use the default option to specify default values. The watch option can be used to monitor prop changes. Leverage props to facilitate communication and reuse between components. </p></blockquote> <p><img src="https://img.php.cn/upload/article/202405/02/2024050221213431472.jpg" alt="How to use props in vue" ></p> <p><strong>Usage of Props in Vue</strong></p> <p>#Props in Vue are used to pass data between components, which allows Child components receive data passed from parent components. The following is the usage of props: </p> <p><strong>1. Declare props in the parent component</strong></p> <p>In the parent component, use the <code>props</code> option to declare the child component. Received props: </p> <pre class="brush:php;toolbar:false"><code class="javascript">export default { props: ['propName'] }</code></pre> <p><strong>2. Use props in the child component</strong></p> <p>In the child component, receive it from the parent component through the <code>props</code> option data: </p> <pre class="brush:php;toolbar:false"><code class="javascript">export default { props: ['propName'] }</code></pre> <p><strong>3. Pass props data</strong></p> <p>In the parent component, use the <code><</code> tag to pass data to the child component:</p><pre class="brush:php;toolbar:false"><code class="javascript"><child-component :prop-name="data"></child-component></code></p> <p>Among them, <code>:prop-name</code> is the name of the prop, and <code>data</code> is the data to be passed. </p> <p><strong>4. Prop type</strong></p> <p>Vue allows you to specify types for props to ensure that the data type passed is correct. Types can use any basic JavaScript type (e.g. string, number, boolean) or a custom type. </p> <pre class="brush:php;toolbar:false"><code class="javascript">export default { props: { propName: { type: String, required: true } } }</code></pre> <p><strong>5. Default value</strong></p> <p>If prop is not provided, you can use the <code>default</code> option to specify a default value: </p> <pre class="brush:php;toolbar:false"><code class="javascript">export default { props: { propName: { default: 'default value' } } }</code></pre> <p> <strong>6. Monitor prop</strong></p> <p>When prop is updated, you can use the <code>watch</code> option to monitor prop changes: </p> <pre class="brush:php;toolbar:false"><code class="javascript">export default { props: ['propName'], watch: { propName(newValue, oldValue) { // prop 更新时的操作 } } }</code></pre> <p>By using props, you can easily Pass data between Vue components efficiently, promoting communication and reuse between components. </p>

The above is the detailed content of How to use props in vue. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn