From 506c63b251aaf537015aa7c05e1cab80d435e35d Mon Sep 17 00:00:00 2001
From: Indrajith K L
Date: Thu, 15 Feb 2018 14:24:00 +0530
Subject: Initial Commit - Fixed the 'npm run dev' command issue. Original
script doesn't build files when changed.
---
src/App.html | 16 ++++++++++++++++
src/components/Test1/Test1.html | 1 +
src/components/Test2/Test2.html | 1 +
src/main.js | 10 ++++++++++
4 files changed, 28 insertions(+)
create mode 100644 src/App.html
create mode 100644 src/components/Test1/Test1.html
create mode 100644 src/components/Test2/Test2.html
create mode 100644 src/main.js
(limited to 'src')
diff --git a/src/App.html b/src/App.html
new file mode 100644
index 0000000..d1a4dc5
--- /dev/null
+++ b/src/App.html
@@ -0,0 +1,16 @@
+
+Template :
+Template :
+
+
+
\ No newline at end of file
diff --git a/src/components/Test1/Test1.html b/src/components/Test1/Test1.html
new file mode 100644
index 0000000..a1ceaa2
--- /dev/null
+++ b/src/components/Test1/Test1.html
@@ -0,0 +1 @@
+
diff --git a/src/components/Test2/Test2.html b/src/components/Test2/Test2.html
new file mode 100644
index 0000000..c12c1a5
--- /dev/null
+++ b/src/components/Test2/Test2.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..9af70cb
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,10 @@
+import App from './App.html';
+
+const app = new App({
+ target: document.body,
+ data: {
+ name: 'This is my name'
+ }
+});
+
+export default app;
\ No newline at end of file
--
cgit v1.2.3