1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import { createComponent, setStyle } from 'vant' ; const MyComponent = createComponent({ name: 'my-component' , props: { title: String, content: String }, data() { return { show: false }; }, methods: { toggle() { this .show = ! this .show; } }, mounted() { setStyle( '.my-component' , { color: 'red' , fontSize: '16px' }); } }); export default MyComponent; |
本文为翻滚的胖子原创文章,转载无需和我联系,但请注明来自猿教程iskeys.com