Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@takuma-ru/vue-library-docs

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@takuma-ru/vue-library-docs

Documentation template for vue library

unpublished
latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

@takuma-ru/vue-library-docs

socialPreview

Status

npm npm npm bundle size

Description

Documentation library for vue library

DEMO

none

Getting Started

0. Create nuxt-app

npx nuxi@latest init [ directoryName ]

1. Install

yarn add @takuma-ru/vue-library-docs

2. How to use

  • Add @takuma-ru/vue-library-docs to extends and use the template.
    defineNuxtConfig({
      extends: '@takuma-ru/vue-library-docs',
      vueLibraryDocs: {
        isUsePlugin: true // Flag whether to use `@takuma-ru/vue-library-docs` templates and components.
      }
    })
    
  • Delete app.vue.
  • Create app.config.ts in root.
    touch app.config.ts
    
    type nul > app.config.ts
    
  • Edit app.config.ts.
    import { IAppConfig } from "./types/app.config";
    
    export default defineAppConfig<IAppConfig>({
      docs: {
        libName: '',
        developerName: '',
        description: '',
        icon: '',
        image: '',
        repository: '',
        npm: '',
        supportVersion: {
          vue2: true,
          vue2Point7: true,
          vue3: true,
          nuxt2: true,
          nuxt3: true
        },
        socialsAccountName: {
          twitter: 'user-name(No need for "@")',
          github: '',
          facebook: '',
          instagram: '',
          youtube: '',
          medium: ''
        },
        navigationListSetting: [
          {
            parentPath: '/playground',
            title: 'Playground',
            icon: 'slow_motion_video'
          }
        ]
      }
    })
    
  • Create content folder in root.
    mkdir content
    

License

MIT - Copyright (c) 2023 takuma-ru

Keywords

vue

FAQs

Package last updated on 21 Feb 2023

Did you know?

Socket

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.

Install

Related posts