-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
33 lines (27 loc) · 830 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
;(function () {
var vSortable = {};
var Sortable = typeof require === 'function'
? require('sortablejs')
: window.Sortable
if (!Sortable) {
throw new Error('[vue-sortable] cannot locate Sortable.js.')
}
// exposed global options
vSortable.config = {}
vSortable.install = function (Vue) {
Vue.directive('sortable', function (el,binding) {
var options = binding.value || {};
var sortable = new Sortable(el,options)
})
};
if (typeof exports == "object") {
module.exports = vSortable
} else if (typeof define == "function" && define.amd) {
define([], function () {
return vSortable
})
} else if (window.Vue) {
window.vSortable = vSortable
Vue.use(vSortable)
}
})()