add customer view and edit
This commit is contained in:
18
src/pages/CustomerView.vue
Normal file
18
src/pages/CustomerView.vue
Normal 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>
|
||||
Reference in New Issue
Block a user