<script setup name="Dashboard">
|
import { ref } from "vue";
|
import PwButton from "@/components/pwButton.vue";
|
|
const acIdx = ref(0);
|
function changeIdx(idx) {
|
acIdx.value = idx;
|
}
|
</script>
|
|
<template>
|
<div class="page-contain bg-footer">
|
<pw-button :active="acIdx === 0" text="品牌" @click="changeIdx(0)"></pw-button>
|
<pw-button :active="acIdx === 1" @click="changeIdx(1)" style="margin-left: 4px;" text="电压等级"></pw-button>
|
</div>
|
</template>
|
|
<style scoped lang="less">
|
.page-contain {
|
padding: 10px 28px;
|
}
|
</style>
|