widget-fav.vue 219 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <template> <WidgetIconBtn type="fav" :text="num" :option="option"></WidgetIconBtn> </template> <script> export default { name: 'WidgetFav', props: { num: [String, Number], option: Object } }; </script>