mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* search component add new style * update vue version and support ssr * unit test * add new icon * new icon
25 lines
634 B
Vue
25 lines
634 B
Vue
<template><section class="demo-uploader"><h1 class="demo-title">Uploader 图片上传</h1><example-block title="基础用法">
|
|
<div class="uploader-container">
|
|
<van-uploader :after-read="logContent">
|
|
<van-icon name="photograph"></van-icon>
|
|
</van-uploader>
|
|
</div>
|
|
|
|
|
|
|
|
</example-block></section></template>
|
|
<style>
|
|
.uploader-container {
|
|
padding: 5px 15px;
|
|
}
|
|
</style>
|
|
<script>
|
|
import Vue from "vue";import ExampleBlock from "components/example-block";Vue.component("example-block", ExampleBlock);
|
|
export default {
|
|
methods: {
|
|
logContent(file) {
|
|
console.log(file)
|
|
}
|
|
}
|
|
};
|
|
</script> |