iot-ui-vue/src/views/link/Certificate/index.vue

12 lines
204 B
Vue

<template>
<a-button type="primary" @click="handlAdd">新增</a-button>
</template>
<script lang="ts" setup name="CertificatePage">
const handlAdd = (e: any) => {
console.log(111,e);
}
</script>