ant-design-vue/components/vc-m-feedback/demo/simple.jsx
2019-01-12 12:46:29 +08:00

23 lines
509 B
Vue

import TouchFeedback from '../index';
import './simple.less';
export default {
render() {
return (
<div style={{ marginBottom: 12 }}>
<TouchFeedback activeClassName="active" activeStyle={{ color: 'red' }}>
<div
class="normal"
style={{
backgroundColor: 'yellow',
}}
onClick={() => console.log('click div')}
>
click to active
</div>
</TouchFeedback>
</div>
);
},
};