23 lines
242 B
Vue
23 lines
242 B
Vue
|
|
<template>
|
||
|
|
<div class="integralAdd">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "integralAdd",
|
||
|
|
appName: '积分申请',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.integralAdd {
|
||
|
|
|
||
|
|
}
|
||
|
|
</style>
|