Skip to content

WeiChiaChang/vue-accordion-menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-accordion-menu

npm npm total npm vue2

Simple accordion menu component in Vue 2

AccordionMenu

Table of contents

Installation

npm install --save vue-accordion-menu

Default import

Install all the components:

import Vue from 'vue'
import VueAccordionMenu from 'vue-accordion-menu'

Vue.use(VueAccordionMenu)

Use specific components:

import Vue from 'vue'
import { AccordionMenu } from 'vue-accordion-menu'

Vue.component('AccordionMenu', AccordionMenu)

⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.

This docs would be a great help

Distribution import

Install all the components:

import 'vue-accordion-menu/dist/vue-accordion-menu.css'
import VueAccordionMenu from 'vue-accordion-menu/dist/vue-accordion-menu.common'

Vue.use(VueAccordionMenu)

Use specific components:

import 'vue-accordion-menu/dist/vue-accordion-menu.css'
import { AccordionMenu } from 'vue-accordion-menu/dist/vue-accordion-menu.common'

Vue.component('AccordionMenu', AccordionMenu)

⚠️ You may have to setup your bundler to embed the css file in your page.

Browser

<link rel="stylesheet" href="vue-accordion-menu/dist/vue-accordion-menu.css"/>

<script src="vue.js"></script>
<script src="vue-accordion-menu/dist/vue-accordion-menu.browser.js"></script>

The plugin should be auto-installed. If not, you can install it manually with the instructions below.

Install all the components:

Vue.use(VueAccordionMenu)

Use specific components:

Vue.component('AccordionMenu', VueAccordionMenu.AccordionMenu)

Source import

Install all the components:

import Vue from 'vue'
import VueAccordionMenu from 'vue-accordion-menu/src'

Vue.use(VueAccordionMenu)

Use specific components:

import Vue from 'vue'
import { AccordionMenu } from 'vue-accordion-menu/src'

Vue.component('AccordionMenu', AccordionMenu)

⚠️ You need to configure your bundler to compile .vue files. More info in the official documentation.

Usage

First of all, after installing successfully then type these command in your main.js:

import { AccordionMenu } from 'vue-accordion-menu'
Vue.component('AccordionMenu', AccordionMenu)

Now you can add some customized contents for your accordion menu (use App.vue for example):

data () {
  return {
    contents: [
    {
      title: 'How are you?',
      msg: 'Test for fun!',
    },
    {
      title: 'Who let the dog out?',
      msg: 'I do not know, dude.',
    },
    {
      title: '肚子好餓?',
      msg: '吃芭樂啦!',
    },
    {
      title: 'Find hotels?',
      msg: 'Trivago!',
    },
    ],
  }
}

Last step, use it in your App.vue file!

<AccordionMenu :contents="contents"></AccordionMenu>

Enjoy your customized AccordionMenu! turtle

Example

Live Demo !


Plugin Development

Installation

The first time you create or clone your plugin, you need to install the default dependencies:

npm install

Watch and compile

This will run webpack in watching mode and output the compiled files in the dist folder.

npm run dev

Use it in another project

While developping, you can follow the install instructions of your plugin and link it into the project that uses it.

In the plugin folder:

npm link

In the other project folder:

npm link vue-accordion-menu

This will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.

Publish to npm

You may have to login to npm before, with npm adduser. The plugin will be built in production mode before getting published on npm.

npm publish

Manual build

This will build the plugin into the dist folder in production mode.

npm run build

License

MIT

About

🔨 Simple accordion menu component in Vue 2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published