I have a component called Card.vue
that is duplicated many times. So there is not one instance of the component. Should I still be using el
to link the element with the component? Ie should I be doing the following or something else?
<template>
<div class="card">
...
</div>
</template>
<script>
export default {
el: '.card', // should I use another property (list?) or something else?
}
</script>
<style lang="scss">
</style>