Home > Web Front-end > Vue.js > body text

How to define a component in vue.js

下次还敢
Release: 2024-04-02 00:45:18
Original
776 people have browsed it

There are three ways to define a component in Vue.js: directly define it in the <script> tag and export the component object, create it using the component factory function and defineComponent auxiliary function, and use a class to define the component and inherit Vue.extend to create it. .

How to define a component in vue.js

How to define components in Vue.js

1. Direct definition

  1. In the <script> tag, use export default {} to export the component object:

    <code class="html"><script>
    export default {
      // 组件内容
    }
    </script></code>
    Copy after login
  2. In the <template> tag, define the component layout:

    <code class="html"><template>
      <div>组件内容</div>
    </template></code>
    Copy after login

2. Use the component factory function

  1. Create a factory function and use defineComponent Auxiliary function:

    <code class="javascript">import { defineComponent } from 'vue'
    
    export default defineComponent({
      // 组件内容
    })</code>
    Copy after login
  2. The component layout is the same as the direct definition above.

3. Use classes to define components

  1. InheritanceVue.extend Create a class:

    <code class="javascript">import Vue from 'vue'
    
    export default class MyComponent extends Vue {
      // 组件内容
    }</code>
    Copy after login
  2. Registered component:

    <code class="javascript">// 在 Vue 实例中
    this.$options.components.MyComponent = MyComponent</code>
    Copy after login

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

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!