1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-09 00:42:36 +00:00
primevue-mirror/doc/configuration/csp/NonceDoc.vue
2023-09-22 15:54:14 +03:00

25 lines
547 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP">nonce</a> value to use on dynamically generated style elements in core.</p>
<DocSectionCode :code="code1" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
</DocSectionText>
</template>
<script>
export default {
data() {
return {
code1: {
basic: `
app.use(PrimeVue, {
csp: {
nonce: '...'
}
});
`
}
};
}
};
</script>