🚧 Site > Add file

This commit is contained in:
brunosimon
2017-08-10 01:29:46 +02:00
parent 5cac120de2
commit f7a52d970b
17 changed files with 106 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
<template src="./template.html"></template>
<script src="./script.js"></script>
<style src="./style.styl" lang="stylus" scoped></style>
+16
View File
@@ -0,0 +1,16 @@
import Version from '@/components/version'
export default
{
name: 'versions',
components:
{
Version
},
props:
{
content: { type: Array }
}
}
+7
View File
@@ -0,0 +1,7 @@
.versions
position absolute
top 30px
left 0
width 25%
height 100%
background rgba(255, 0, 0, 0.3)
@@ -0,0 +1,3 @@
<div class="versions">
<version v-for="version of content" :content="version"></version>
</div>