12 lines
222 B
Vue
12 lines
222 B
Vue
![]() |
<template>
|
||
|
<DocSectionText v-bind="$attrs" />
|
||
|
<DocSectionCode :code="code" lang="script" />
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const code = ref(`import Toast from '@/volt/toast';
|
||
|
`);
|
||
|
</script>
|