demo.vue
tsconfig.json
Import Map
xxxxxxxxxx
11
<script setup>
import { Button, Toast } from '@kousum/semi-ui-vue';
import { defineComponent, ref } from 'vue';
function clickFn() {
Toast.info('OK')
}
</script>
<template>
<Button type='primary' @click="clickFn">按钮</Button>
</template>
Show Error
Auto Save