35 lines
688 B
Vue
35 lines
688 B
Vue
<template>
|
|
<v-card>
|
|
<v-card-title class="bg-primary white--text text-center">
|
|
<h4>批次報名</h4>
|
|
<div class="ms-auto">
|
|
<v-btn @click.prevent="batchSave()">儲存</v-btn>
|
|
<v-btn @click.prevent="back01()">返回</v-btn>
|
|
</div>
|
|
</v-card-title>
|
|
</v-card>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
props: {
|
|
num: {
|
|
type: Number
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
batchSave() {
|
|
|
|
},
|
|
back01() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
|
|
</style> |