mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-01 07:03:27 +08:00
17 lines
244 B
Markdown
17 lines
244 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Wb-input type="file" v-model="text1" @on-change="change"></Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
text1: '',
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |