Create Grid component + Test. Index test adaptations

This commit is contained in:
2020-12-17 19:31:25 +01:00
parent baed9969b2
commit 10808b66b2
4 changed files with 53 additions and 5 deletions

19
components/Grid.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<div class="grid">
{{ dataSource }}
</div>
</template>
<script>
export default {
name: "Grid",
props: {
dataSource: {
type: Array,
required: true
}
}
};
</script>
<style></style>