欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

vue component script

江奕云2年前8瀏覽0評論

VUE是一款非常優秀的JS框架,而Component Script為VUE開發者提供了非常強大的組件化開發能力。那么到底什么是Component Script,又該如何使用呢?

定義一個組件的Component Script如下所示:                                                                  
const MyComponent = {                                                        
data() {                                                                   
return {                                                                 
name: 'Vue 3',                                                         
author: 'Evan You'                                                      
}                                                                         
},                                                                          
template: `

{{ name }}

Written by {{ author }}

` } export default MyComponent;

在上面的代碼中,我們通過定義一個名為MyComponent的對象來定義了一個組件。我們可以在該腳本中進行數據定義,模板定義,以及一些其他的邏輯,最終通過export default導出一個組件。這個組件可以被其他的.vue文件中通過<script>標簽的import導入并且使用。

使用Component Script
<template>
<MyComponent/>                                                            
</template>
<script>
import MyComponent from './MyComponent.vue'
export default {
components: {
MyComponent
}
}
</script>

上面的代碼中,我們在父組件的.vue文件中使用了MyComponent,并在<script>標簽中通過import導入了MyComponent組件,然后通過components屬性在Vue實例中注冊了該組件。這樣,我們就可以在父組件的template中使用MyComponent組件了。在VUE中使用組件就是這么簡單。