</template>
<script setup lang="ts">
-import { getCurrentInstance, reactive } from 'vue'
+import { defineProps, getCurrentInstance, reactive } from 'vue'
import Button from '@/components/buttons/Button.vue'
const props = defineProps<{
</template>
<script setup lang="ts">
-import { getCurrentInstance, reactive } from 'vue'
+import { defineProps, getCurrentInstance, reactive } from 'vue'
import Button from '@/components/buttons/Button.vue'
const props = defineProps<{
</template>
<script setup lang="ts">
+import { defineProps } from 'vue'
import FlatButton from '@/components/buttons/FlatButton.vue'
defineProps<{
</template>
<script setup lang="ts">
-import { getCurrentInstance } from 'vue'
+import { defineProps, getCurrentInstance } from 'vue'
import { useToast } from 'vue-toast-notification'
import Button from '@/components/buttons/Button.vue'
import type { ConnectorStatus, Status } from '@/types'
</template>
<script setup lang="ts">
-import { getCurrentInstance } from 'vue'
+import { defineProps, getCurrentInstance } from 'vue'
import { useToast } from 'vue-toast-notification'
import CSConnector from '@/components/charging-stations/CSConnector.vue'
import Button from '@/components/buttons/Button.vue'
flex-direction: row;
justify-content: center;
align-items: center;
+ border: solid 0.25px black;
}
.connectors-table__row:nth-of-type(even) {
</template>
<script setup lang="ts">
+import { defineProps } from 'vue'
import CSData from '@/components/charging-stations/CSData.vue'
import type { ChargingStationData } from '@/types'
flex-direction: row;
justify-content: center;
align-items: center;
+ border: solid 0.5px black;
}
.cs-table__row:nth-of-type(even) {
.cs-table__column {
height: fit-content;
- width: calc(65% / 10);
+ width: calc(60% / 10);
text-align: center;
}
.cs-table__connectors-column {
height: fit-content;
- width: 35%;
+ width: 40%;
}
</style>