mirror of
https://github.com/501351981/vue-office.git
synced 2025-07-15 07:32:19 +08:00
24 lines
459 B
Vue
24 lines
459 B
Vue
<template>
|
|
<div style="width: 500px;overflow: hidden;position: relative">
|
|
<vue-office-excel :src="src" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/* eslint-disable */
|
|
import VueOfficeExcel from '../../packages/excel'
|
|
import '../../packages/excel/lib/index.css'
|
|
export default {
|
|
name: "ExcelDemo",
|
|
components:{VueOfficeExcel},
|
|
data(){
|
|
return{
|
|
src: 'http://static.shanhuxueyuan.com/demo/excel.xlsx'
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |