Simple assembly

<! - Template ->
<Template>
<! - the root of the container can only be one ->
<div class = "main"> <P> Learn Vues </ P>
<Forma /> </ div>

</template>

<Script>
Import from Forma './forma'
Export default {
name: "Learn", // Component Name
components: {forma}, // injection
// initialization state so that data on the
data () {
return {

}
}
}
</script>

<!--样式 -->
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="css" scoped>
.main{background-color:red;color:#fff;}
</style>

Guess you like

Origin www.cnblogs.com/xiao-peng-ji/p/11306414.html