vue-glide-js

WebJar for vue-glide-js

License

License

MIT
Categories

Categories

IDE Development Tools JavaScript Languages
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

vue-glide-js
Last Version

Last Version

1.3.14
Release Date

Release Date

Type

Type

jar
Description

Description

vue-glide-js
WebJar for vue-glide-js
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/antonreshetov/vue-glide

Download vue-glide-js

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/vue-glide-js/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>vue-glide-js</artifactId>
    <version>1.3.14</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/vue-glide-js/
implementation 'org.webjars.npm:vue-glide-js:1.3.14'
// https://jarcasting.com/artifacts/org.webjars.npm/vue-glide-js/
implementation ("org.webjars.npm:vue-glide-js:1.3.14")
'org.webjars.npm:vue-glide-js:jar:1.3.14'
<dependency org="org.webjars.npm" name="vue-glide-js" rev="1.3.14">
  <artifact name="vue-glide-js" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='vue-glide-js', version='1.3.14')
)
libraryDependencies += "org.webjars.npm" % "vue-glide-js" % "1.3.14"
[org.webjars.npm/vue-glide-js "1.3.14"]

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.npm : glidejs__glide jar [3.2.4,4)
org.webjars.npm : vue jar [2.5.16,3)

Project Modules

There are no modules declared in this project.

Vue Glide

npm bundle size

Vue component on top of the Glide.js

Documentation

https://antonreshetov.github.io/vue-glide

Install

NPM

Installing with npm is recommended and it works seamlessly with webpack.

npm i vue-glide-js

Download

You can download latest version from the Github: Download

Quick Start

Global

To use in your project, just import vue-glide and install into Vue.

import Vue from 'vue'
import App from './App.vue'
import VueGlide from 'vue-glide-js'
import 'vue-glide-js/dist/vue-glide.css'

Vue.use(VueGlide)

new Vue({
  el: '#app',
  render: h => h(App)
})

On demand

<template>
  <div id="app">
    <vue-glide>
      <vue-glide-slide v-for="i in 10" :key="i">
        Slide {{ i }}
      </vue-glide-slide>
    </vue-glide>
  </div>
</template>

<script>
  import { Glide, GlideSlide } from 'vue-glide-js'

  export default {
    components: {
      [Glide.name]: Glide,
      [GlideSlide.name]: GlideSlide
    }
  }
</script>

License

MIT © 2018-present Anton Reshetov

Versions

Version
1.3.14
1.3.12