24 lines
581 B
Vue
24 lines
581 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Toast component is controlled via the <i>ToastService</i> that needs to be installed as an application plugin.</p>
|
|
</DocSectionText>
|
|
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `
|
|
import {createApp} from 'vue';
|
|
import ToastService from 'primevue/toastservice';
|
|
|
|
const app = createApp(App);
|
|
app.use(ToastService);`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|