1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-05-11 21:05:22 +02:00

Merge pull request #336 from chinchang/release-3.5

Release 3.5
This commit is contained in:
Kushagra Gour 2018-10-24 14:25:51 +05:30 committed by GitHub
commit 7fedd4cca9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 33 additions and 7 deletions

5
src/assets/vue-logo.svg Normal file
View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 196.32 170.02">
<path fill="#42b883" d="M120.83 0L98.16 39.26 75.49 0H0l98.16 170.02L196.32 0h-75.49z"/>
<path fill="#35495e" d="M120.83 0L98.16 39.26 75.49 0H39.26l58.9 102.01L157.06 0h-36.23z"/>
</svg>

After

Width:  |  Height:  |  Size: 300 B

View File

@ -17,7 +17,7 @@ export const jsLibs = [
}, },
{ {
url: url:
'https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/js/foundation.min.js', 'https://cdn.jsdelivr.net/npm/foundation-sites@6.5.0-rc.3/dist/js/foundation.min.js',
label: 'Foundation', label: 'Foundation',
type: 'js' type: 'js'
}, },
@ -54,7 +54,7 @@ export const jsLibs = [
type: 'js' type: 'js'
}, },
{ {
url: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.13.0/d3.min.js', url: 'https://d3js.org/d3.v5.min.js',
label: 'D3', label: 'D3',
type: 'js' type: 'js'
}, },
@ -76,7 +76,7 @@ export const jsLibs = [
}, },
{ {
url: url:
'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.42/js/uikit.min.js', 'https://getuikit.com/assets/uikit/dist/js/uikit.js',
label: 'UIkit 3', label: 'UIkit 3',
type: 'js' type: 'js'
}, },
@ -118,7 +118,7 @@ export const cssLibs = [
}, },
{ {
url: url:
'https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/css/foundation.min.css', 'https://cdn.jsdelivr.net/npm/foundation-sites@6.5.0-rc.3/dist/css/foundation.min.css',
label: 'Foundation', label: 'Foundation',
type: 'css' type: 'css'
}, },
@ -128,7 +128,7 @@ export const cssLibs = [
type: 'css' type: 'css'
}, },
{ {
url: 'https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css', url: 'https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css',
label: 'Bulma', label: 'Bulma',
type: 'css' type: 'css'
}, },
@ -151,7 +151,7 @@ export const cssLibs = [
}, },
{ {
url: url:
'https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.42/css/uikit.min.css', 'https://getuikit.com/assets/uikit/dist/css/uikit.css',
label: 'UIkit 3', label: 'UIkit 3',
type: 'css' type: 'css'
}, },
@ -168,7 +168,7 @@ export const cssLibs = [
type: 'css' type: 'css'
}, },
{ {
url: 'https://use.fontawesome.com/releases/v5.0.10/css/all.css', url: 'https://use.fontawesome.com/releases/v5.4.1/css/all.css',
label: 'FontAwesome 5', label: 'FontAwesome 5',
type: 'css' type: 'css'
} }

View File

@ -9,6 +9,11 @@ export default [
title: 'React', title: 'React',
img: 'assets/react-logo.svg' img: 'assets/react-logo.svg'
}, },
{
id: 'vue',
title: 'Vue',
img: 'assets/vue-logo.svg'
},
{ {
id: 'kontra-game-engine', id: 'kontra-game-engine',
title: 'Kontra Game Engine', title: 'Kontra Game Engine',

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>"
}