Vue single file components

Other topics

Sample .vue component file

<template>
  <div class="nice">Component {{title}}</div>
</template>

<script>
export default {
    data() {
        return {
            title: "awesome!"
        };
    }
}
</script>

<style>
.nice {
    background-color: red;
    font-size: 48px;
}
</style>

Contributors

Topic Id: 10118

Example Ids: 31049

This site is not affiliated with any of the contributors.