1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-28 13:09:02 +00:00
awesome-cheatsheets/pages/index.vue

34 lines
916 B
Vue
Raw Normal View History

<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
2018-09-09 14:50:38 +00:00
<template lang="pug">
2018-09-09 15:26:24 +00:00
.c-index
h2(
v-html="description"
)
</template>
2018-09-09 14:50:38 +00:00
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
2018-09-09 14:50:38 +00:00
<script>
2018-09-09 15:26:24 +00:00
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>
2018-09-09 14:50:38 +00:00
<!-- *************************************************************************
STYLE
************************************************************************* -->
2018-09-09 14:50:38 +00:00
<style lang="scss"></style>