add customer view and edit

This commit is contained in:
2017-03-22 11:08:12 -07:00
parent 7a3d38f7ee
commit 253d3eb6f6
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<section class="section">
<div class="container">
<div class="notification">
View customer by id: {{ $route.params.id }}
</div>
</div>
</section>
</template>
<script>
export default {
name: 'customer-view-page',
beforeCreate() {
console.log('before create view')
},
}
</script>