16 lines
336 B
Vue
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>
|