mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-25 07:08:58 +08:00
19 lines
254 B
Vue
19 lines
254 B
Vue
<template>
|
|
<vue-office-excel :src="src"/>
|
|
</template>
|
|
|
|
<script>
|
|
/* eslint-disable */
|
|
export default {
|
|
name: "ExcelDemo",
|
|
data(){
|
|
return{
|
|
src: 'http://static.shanhuxueyuan.com/demo/excel.xlsx'
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |