Vue.js
Vue enkele bestand componenten
Zoeken…
Invoering
Beschrijf hoe u afzonderlijke bestandscomponenten in een .vue-bestand kunt maken.
Vooral de ontwerpbeslissingen die kunnen worden genomen.
Voorbeeld .vue componentbestand
<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>
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow