
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
momentum-layout
Advanced tools
A Vue 3 compiler macro to define persistent layouts in Inertia.js apps
Momentum Layout provides a Vue 3 compiler macro to define persistent layouts for Inertia.js apps within <script setup>
.
Install the package.
npm i momentum-layout
# or
yarn add momentum-layout
Then, register the plugin by importing it and pushing it to the plugins
array in
vite.config.ts
import { defineConfig } from "vite"
import inertiaLayout from "momentum-layout"
export default defineConfig({
plugins: [
vue(),
inertiaLayout(),
],
})
defineLayout
is a compile-time macro. It's not an actual method that needs to be imported.
To make the TypeScript engine understand the macro, add momentum-layout/macro
to the array types
in tsconfig.json
.
{
"compilerOptions": {
"types": [
"vite/client",
"momentum-layout/macro"
]
}
}
Import the layout component, and pass it to the defineLayout
hook.
<script setup>
import Layout from "@/layouts/guest.vue"
defineLayout(Layout)
</script>
<template>
<H1>Welcome</H1>
<p>Hello {{ user.name }}, welcome to your first Inertia app!</p>
</template>
You can also create more complex layout arrangements using nested layouts.
<script setup>
import MainLayout from "@/layouts/main.vue"
import SettingsLayout from "@/layouts/settings.vue"
defineLayout([MainLayout, SettingsLayout])
</script>
Take your Inertia.js skills to the next level with my book Advanced Inertia. Learn advanced concepts and make apps with Laravel and Inertia.js a breeze to build and maintain.
Momentum is a set of packages designed to improve your experience building Inertia-powered apps.
The MIT License (MIT). Please see License File for more information.
FAQs
A Vue 3 compiler macro to define persistent layouts in Inertia.js apps
The npm package momentum-layout receives a total of 127 weekly downloads. As such, momentum-layout popularity was classified as not popular.
We found that momentum-layout 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.