@sse-ui/nu-meta
v1.0.0
Published
[![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href]
Downloads
3
Maintainers
Readme
Nuxt Component Meta
Gather components metadata on build time and make them available on production. This module is developed to give a visual Markdown Editor with Vue Components in it.
Quick Setup
- Add
@sse-ui/nu-meta
dependency to your project:
# Using PNPM
pnpm add @sse-ui/nu-meta
# Using NPM
npm install @sse-ui/nu-meta
- Add
@sse-ui/nu-meta
to themodules
section of yournuxt.config.ts
export default defineNuxtConfig({
modules: ["@sse-ui/nu-meta"],
});
Usage
<template>
<div>
<h2>`MyComponent` metadata</h2>
<pre>
{{ meta }}
</pre>
</div>
</template>
<script script>
const { data: meta } = await useAsyncData('my-component', () => $fetch('/api/component-meta/my-component'))
</script>
Nightly Builds
You can install the latest nightly build of the Studio module by running:
npm i @sse-ui/nu-meta
Development
- Clone this repository
- Install dependencies using
pnpm install
- Start dev server using
pnpm dev