
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
nuxt-typo3-skin
Advanced tools
Proof of concept additional theming for nuxt-typo3
in your nuxt-typo3 project
yarn add nuxt-typo3-skin
nuxt.config.js
:
...
modules: [
'nuxt-typo3-skin',
// Doc: https://github.com/TYPO3-Initiatives/nuxt-typo3
'nuxt-typo3'
],
...
And use our layouts/default.vue
<template>
<div class="wrapper">
<header-main>
<template v-slot:before>
<language-switcher
:active="currentLanguage"
:languages="availableLanguages"
class="container flex justify-end"
/>
</template>
<template v-slot:logo>
<nuxt-link :to="navMain.link" class="flex h-full items-center">
<logo />
</nuxt-link>
</template>
<template v-slot:navigation>
<navigation-main :links="navMain.children" />
</template>
</header-main>
<div class="section-main">
<div v-if="breadcrumbs" class="border-b mb-20px">
<breadcrumbs :links="breadcrumbs" class="container" />
</div>
<nuxt />
</div>
<footer-main>
<template v-slot:credits>
<nuxt-link :to="navMain.link" class="flex h-full items-center">
<logo />
</nuxt-link>
</template>
</footer-main>
</div>
</template>
<script>
import {
NavigationMain,
Logo,
HeaderMain,
FooterMain,
Breadcrumbs,
LanguageSwitcher
} from 'nuxt-typo3-skin/components'
import { mapState } from 'vuex'
export default {
components: {
NavigationMain,
HeaderMain,
FooterMain,
Logo,
Breadcrumbs,
LanguageSwitcher
},
computed: {
...mapState({
navMain: (state) => state.typo3.initial.navigation[0] || [], // get first instance from root tree,
breadcrumbs: (state) => state.typo3.page.page.breadcrumbs || [], // get breadcrumbs for current page,
currentLanguage: (state) => state.typo3.locale,
availableLanguages: (state) => state.typo3.page.languages
})
}
}
</script>
FAQs
Nuxt-typo3 theme
The npm package nuxt-typo3-skin receives a total of 0 weekly downloads. As such, nuxt-typo3-skin popularity was classified as not popular.
We found that nuxt-typo3-skin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.