
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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
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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.