From b366f20c3bc0f96565647fada14c55c37b57a568 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sat, 9 Jun 2018 12:58:38 +0300 Subject: Initial vue project --- src/main.js | 13 +++++++++++++ 1 file changed, 13 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..684ffac --- /dev/null +++ b/src/main.js @@ -0,0 +1,13 @@ +// The Vue build version to load with the `import` command +// (runtime-only or standalone) has been set in webpack.base.conf with an alias. +import Vue from 'vue' +import App from './App' + +Vue.config.productionTip = false + +/* eslint-disable no-new */ +new Vue({ + el: '#app', + components: { App }, + template: '' +}) -- cgit v1.3.1