flizesther
7/1/2019 - 4:19 PM

un componente para hacer el test.vue

<template>
    <h1 :class="{ 'its-red' : shouldBeRed }">Hola</h1>
</template>

<script>
export default {
    props: {
        shouldBeRed: {
            type: Boolean,
            required: true
        }
    }
}
</script>

<style>

</style>