From 2c900224c541f93be09c1abe52d213dbfa5a27bf Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Thu, 6 Feb 2020 15:04:44 +0300 Subject: [PATCH] Fixed #185 - Could not find module './components/row/Row' --- exports/row.d.ts | 1 + exports/row.js | 2 ++ src/components/row/Row.d.ts | 3 +++ 3 files changed, 6 insertions(+) create mode 100644 exports/row.d.ts create mode 100644 exports/row.js create mode 100644 src/components/row/Row.d.ts diff --git a/exports/row.d.ts b/exports/row.d.ts new file mode 100644 index 000000000..a8911738d --- /dev/null +++ b/exports/row.d.ts @@ -0,0 +1 @@ +export * from './components/row/Row'; \ No newline at end of file diff --git a/exports/row.js b/exports/row.js new file mode 100644 index 000000000..b9ab1979d --- /dev/null +++ b/exports/row.js @@ -0,0 +1,2 @@ +'use strict'; +module.exports = require('./components/row/Row.vue'); \ No newline at end of file diff --git a/src/components/row/Row.d.ts b/src/components/row/Row.d.ts new file mode 100644 index 000000000..49091e640 --- /dev/null +++ b/src/components/row/Row.d.ts @@ -0,0 +1,3 @@ +import Vue from 'vue'; + +export declare class Row extends Vue {} \ No newline at end of file