25 lines
435 B
Vue
25 lines
435 B
Vue
<template>
|
|
<div class="resume" id="template">
|
|
<h1>This is a template</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { PERSON as person } from '../person';
|
|
|
|
import Vue from 'vue';
|
|
// TODO rename vue component
|
|
export default Vue.component('template', {
|
|
name: 'template',
|
|
data () {
|
|
return {
|
|
person
|
|
};
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
<style lang="less" scoped>
|
|
</style>
|