37 lines
598 B
Vue
37 lines
598 B
Vue
<template>
|
|
<div>
|
|
<demo />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import demo from '../components/vc-virtual-list/examples/basic.jsx';
|
|
export default {
|
|
components: {
|
|
demo,
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
pStyle: {
|
|
fontSize: '16px',
|
|
color: 'rgba(0,0,0,0.85)',
|
|
lineHeight: '24px',
|
|
display: 'block',
|
|
marginBottom: '16px',
|
|
},
|
|
pStyle2: {
|
|
marginBottom: '24px',
|
|
},
|
|
};
|
|
},
|
|
methods: {
|
|
showDrawer() {
|
|
this.visible = true;
|
|
},
|
|
onClose() {
|
|
this.visible = false;
|
|
},
|
|
},
|
|
};
|
|
</script>
|