19 lines
312 B
Vue
19 lines
312 B
Vue
<template>
|
|
<Layout>
|
|
<div class="bg-white w-[952px] h-full rounded-[16px]">
|
|
454646
|
|
</div>
|
|
</Layout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
const openBaidu = () => {
|
|
(window as any).ipcAPI?.openBaidu()
|
|
|
|
// 发送日志
|
|
(window as any).ipcAPI?.logToMain('info', '打开百度')
|
|
}
|
|
</script>
|
|
|