Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Rearranging items
Browse files Browse the repository at this point in the history
  • Loading branch information
sadiqevani committed Feb 7, 2019
1 parent e78bb4b commit d0878f6
Show file tree
Hide file tree
Showing 8 changed files with 890 additions and 15 deletions.
838 changes: 838 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
"eslint-plugin-vue": "^5.0.0",
"esm": "^3.2.1",
"express": "^4.16.4",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
Expand Down
6 changes: 4 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
</head>
<body>
<noscript>
<strong>We're sorry but aepp-playground doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
<strong>
We're sorry but aepp-playground doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<div id="aepp"></div>
<!-- built files will be auto injected -->
</body>
</html>
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export default new Vue({
router,
store,
render: h => h(App),
}).$mount('#app')
}).$mount('#aepp')
5 changes: 3 additions & 2 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import Router from 'vue-router'
Vue.use(Router)

export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [{
name: 'begin',
name: 'index',
path: '/',
component: {}
component: require('../views/index/index.vue').default
}]
})
24 changes: 24 additions & 0 deletions src/style/rules.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,27 @@ html, body {
box-sizing: inherit;
}
}

.resizex{
resize:horizontal;
}

.w-96{
width:24rem
}

.min-w-32{
min-width:8rem
}

.min-w-128{
min-width:32rem
}

.max-w-almost-full{
max-width:calc(100vw - 4rem);
}

.h-160{
height:40rem
}
19 changes: 9 additions & 10 deletions src/views/app.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
<template>
<div>
<h1>Aepp playground</h1>
<aepp-channels />
<div id="aepp" class="aepp-container">
<router-view />
</div>
</template>
<script>
import aeppChannels from '../components/aepp-channels.vue'
export default {
name: 'aepp-playground',
components: {
aeppChannels
}
name: 'aepp-playground'
}
</script>
<style></style>
<style lang="scss" scoped>
.aepp-container {
width: 100%;
height: 100%;
}
</style>
9 changes: 9 additions & 0 deletions src/views/index/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<template>
<div>1</div>
</template>
<script>
export default {
name: 'aepp-index'
}
</script>
<style lang="scss" scoped></style>

0 comments on commit d0878f6

Please sign in to comment.