mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
25 lines
360 B
Vue
25 lines
360 B
Vue
<script setup lang="ts">
|
|
function testMsg() {
|
|
window.$message?.error('Once upon a time you dressed so fine')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
text-center
|
|
c-red
|
|
>
|
|
三级菜单页
|
|
<n-button
|
|
strong
|
|
secondary
|
|
type="success"
|
|
@click="testMsg"
|
|
>
|
|
testMsg
|
|
</n-button>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|