materio-d9/web/themes/custom/materiotheme/vuejs/components/Content/Card.vue

21 lines
219 B
Vue
Raw Normal View History

<template>
<div class="card">
<h1>{{ item.title }}</h1>
</div>
</template>
<script>
export default {
name: "Card",
props: ['item'],
data: () => ({
})
}
</script>
<style lang="scss" scoped>
</style>