26 lines
303 B
Vue
26 lines
303 B
Vue
|
|
<template>
|
||
|
|
<div class="adds">1</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'add',
|
||
|
|
components: {},
|
||
|
|
props: {},
|
||
|
|
data() {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
computed: {},
|
||
|
|
watch: {},
|
||
|
|
onLoad() {},
|
||
|
|
onShow() {},
|
||
|
|
methods: {},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
.adds {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|