1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-08-06 21:36:29 +02:00

build 3.5.0

This commit is contained in:
Kushagra Gour
2018-10-24 15:01:19 +05:30
parent eb964752a0
commit 6361034933
5 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
{
"title": "Vue template",
"externalLibs": {
"js": "\nhttps://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js",
"css": ""
},
"updatedOn": 1540223760000,
"sizes": ["", "calc(17.4842% - 6px)", "calc(49.1221% - 3px)"],
"mainSizes": [68.1051, 31.6949],
"htmlMode": "html",
"cssMode": "css",
"jsMode": "es6",
"layoutMode": 1,
"js": "const app = new Vue({\n el: '#root',\n data: {\n message: 'World'\n }\n});",
"html": "<div id=\"root\">\n <h1>Hello {{ message }}</h1>\n</div>"
}