resume/src/resumes/template.vue
2018-09-27 19:03:16 +02:00

18 lines
394 B
Vue
Executable File

<template>
<div class="resume" id="template">
<h1>This is a template</h1>
</div>
</template>
<script>
import Vue from 'vue';
import { getVueOptions } from './options';
const name = 'TEMPLATE-NAME'; // TODO change name
export default Vue.component(name, getVueOptions(name));
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="less" scoped>
</style>