Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
surmon-china committed Jul 9, 2017
1 parent de51c8f commit 7ffd461
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/01-example.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<md-card>
<md-card-actions v-md-ink-ripple>
<md-card-actions>
<div class="md-subhead">
<span>Horizontal Base Example</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/02-example.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<md-card>
<md-card-actions v-md-ink-ripple>
<md-card-actions>
<div class="md-subhead">
<span>Horizontal Disabled Example</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/03-example.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<md-card>
<md-card-actions v-md-ink-ripple>
<md-card-actions>
<div class="md-subhead">
<span>Horizontal MinWidth and MaxWidth Example</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/04-example.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<md-card>
<md-card-actions v-md-ink-ripple>
<md-card-actions>
<div class="md-subhead">
<span>Vertical MinHeight and MaxHeight Example</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion examples/05-example.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<md-card>
<md-card-actions v-md-ink-ripple>
<md-card-actions>
<div class="md-subhead">
<span>Vertical Nested Example</span>
</div>
Expand Down
9 changes: 5 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@

var dragZone = require('./zone.vue')
var dragHandle = require('./handle.vue')
dragHandle = dragHandle.default || dragHandle

var VueDragZone = {
dragZone,
dragHandle,
dragZone: dragZone,
dragHandle: dragHandle,
install(Vue) {
Vue.component('drag-zone', dragZone)
Vue.component('drag-handle', dragHandle)
Vue.component(dragZone.name, dragZone)
Vue.component(dragHandle.name, dragHandle)
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-drag-zone",
"version": "1.2.0",
"version": "1.2.2",
"description": "Drag Zone component for Vue.js(2.x)",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 7ffd461

Please sign in to comment.