share.js 243 B

12345678910111213141516
  1. export default {
  2. created() {
  3. if (this.type === 'share') {
  4. // 关闭点击
  5. this.mkclick = false
  6. }
  7. },
  8. methods: {
  9. customOpen() {
  10. console.log('share 打开了');
  11. },
  12. customClose() {
  13. console.log('share 关闭了');
  14. }
  15. }
  16. }