mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
11 lines
250 B
Vue
11 lines
250 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs" />
|
|
<DocSectionCode :code="code" lang="script" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
|
|
const code = ref(`import ToggleButton from '@/volt/ToggleButton.vue';
|
|
`);
|
|
</script>
|