Components
Introduction
Single-file Components
Syntax
<!-- MyComponent.vue -->
<template>
<div class="my-component">I'm a component template!</div>
</template>
<script>
module.exports = {
name: 'my-component'
};
</script>
<style>
.my-component {
width:100%;
color:blue;
}
</style>Known Limitations
Last updated