refactor(app): remove useless folders

This commit is contained in:
Julien
2018-09-09 17:26:24 +02:00
parent a8bb7b561e
commit 9bbfe7838a
8 changed files with 24 additions and 102 deletions

View File

@@ -3,7 +3,10 @@
************************************************************************* -->
<template lang="pug">
.c-index
h2(
v-html="description"
)
</template>
<!-- *************************************************************************
@@ -11,7 +14,16 @@
************************************************************************* -->
<script>
export default {};
export default {
data() {
return {
description: `
Awesome cheatsheets for popular programming languages, frameworks and development tools.<br/>
They include everything you should know in one single file. 🤓👌
`
};
}
};
</script>
<!-- *************************************************************************