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/main.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main.js (limited to 'src/main.js') 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