quasar-ui-danx 0.0.5 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +1 -0
- package/package.json +1 -1
- package/src/vue-plugin.js +3 -3
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./src";
|
package/package.json
CHANGED
package/src/vue-plugin.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
export * from "./helpers";
|
2
|
-
export * from
|
2
|
+
export * from "./components/DragAndDrop";
|
3
3
|
|
4
|
-
|
4
|
+
import { version } from "../package.json";
|
5
5
|
|
6
6
|
function install(app) {
|
7
|
-
console.log(
|
7
|
+
console.log(`Installing Danx UI ${version}... Nothing to do really.`);
|
8
8
|
}
|
9
9
|
|
10
10
|
export {
|