primevue-mirror/doc/configuration/locale/ImportDoc.vue

22 lines
532 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Locale values are stored in the global configuration that becomes accessible after installing the PrimeVue.</p>
</DocSectionText>
2023-02-28 17:40:48 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-03-02 12:23:54 +00:00
basic: `import PrimeVue from 'primevue/config';
2023-02-28 08:29:30 +00:00
const app = createApp(App);
app.use(PrimeVue);`
}
};
}
};
</script>