Fixed #185 - Could not find module './components/row/Row'

pull/193/head
cagataycivici 2020-02-06 15:04:44 +03:00
parent aac6cda62d
commit 2c900224c5
3 changed files with 6 additions and 0 deletions

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

@ -0,0 +1 @@
export * from './components/row/Row';

2
exports/row.js Normal file
View File

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

3
src/components/row/Row.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
import Vue from 'vue';
export declare class Row extends Vue {}