1.0.5 • Published 6 years ago

vue-introduction v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

vue-introduction

A Vue.js introduction plugins

This is the simple vue introduction plugins in vue.js

This plugin was uesd in my company project, I will update the advanced features soon.

Demo

the live demo

Install

npm i vue-introduction -S

Quick Start

import the vue-introduction

import Vue from 'vue'
import VueIntroduction from 'vue-introduction'

Vue.use(VueIntroduction)

use in .vue file

<div>
  <div class="logo-container">
    ...
  </div>
  ...
  <fb-intro :active="active" :steps-list="list" @intro-end="active = false"></fb-intro>
  ...
</div>

<script>
  export default{
    data () {
      active: false,
      list: [{
        className: 'logo-container',
        content: 'This is logo container'
      }]
    }
  }
</script>

Attributes

ParameterDescriptiontypeoptional valuedefault value
activebegin the vue-introduction or notBooleantrue/false-
steps-listthe introduction steps list, className item is the dom class name, content item is the introduction descriptionArray[]
1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.1.0

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago