You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
770 B
42 lines
770 B
<template>
|
|
<div v-if="store.missingHeaders.length > 0" class="missing-headers">
|
|
<h1>Missing Headers:</h1>
|
|
<div class="grid">
|
|
<ColumnHeader v-for="header in store.missingHeaders" :key="header" :text="header"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { store } from '../store.js'
|
|
|
|
export default {
|
|
components: {
|
|
},
|
|
data() {
|
|
return {
|
|
store
|
|
}
|
|
},
|
|
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.missing-headers {
|
|
text-align: center;
|
|
}
|
|
|
|
.grid {
|
|
justify-content: center;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-gap: 10px;
|
|
margin-top: 10px;
|
|
padding: 15px;
|
|
border-color: darkgrey;
|
|
border-width: 10px;
|
|
background-color:#800000;
|
|
}
|
|
</style>
|
|
|