Shorthand and Ts for MegaMenu

pull/132/head
cagataycivici 2019-12-05 11:15:06 +03:00
parent ba96148172
commit f7207a091f
3 changed files with 9 additions and 0 deletions

1
exports/megamenu.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './components/megamenu/MegaMenu';

2
exports/megamenu.js Normal file
View File

@ -0,0 +1,2 @@
'use strict';
module.exports = require('./components/megamenu/MegaMenu.vue');

6
src/components/megamenu/MegaMenu.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import Vue from 'vue';
export declare class MegaMenu extends Vue {
model?: any[];
orientation?: string;
}