WebguiappTemplate/WEBUI_SRC/src/pages/InterfacesSettings.vue
2023-08-20 11:53:06 +02:00

16 lines
336 B
Vue

<template>
<div class="cardholder">
<WifiSetCard></WifiSetCard>
<EthSetCard></EthSetCard>
</div>
</template>
<script setup>
import WifiSetCard from "components/webguicomp/cards/WifiSetCard.vue";
import EthSetCard from "components/webguicomp/cards/EthSetCard.vue";
defineOptions({
name: 'InterfacesSettings'
})
</script>