21 lines
189 B
Vue
21 lines
189 B
Vue
|
|
<template>
|
||
|
|
<div class="detail">
|
||
|
|
详情
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.detail {
|
||
|
|
|
||
|
|
}
|
||
|
|
</style>
|