美文网首页
美式霸凌,但是前端框架

美式霸凌,但是前端框架

作者: 写代码的海怪 | 来源:发表于2022-06-24 21:06 被阅读0次

    某日

    [图片上传失败...(image-e1ba59-1656075967394)]

    React:哟,jQuery。你来这里干嘛,小辣鸡。这里是我们的地盘。

    // React
    export const Dance = () => {
      return <span>🕺 🙆 💁 🤷 🙋 🙅 🤷 🙋 🙅</span>;
    };
    
    <!-- Vue -->
    <template>
      <span>🕺 🙆♂️ 🙆♂️ 🙆♂️ 🙆♂️ 🙆♂️ 🙆♂️</span>
    </template>
    

    React:你知道嘛,这地方不收辣鸡 👎

    Vue:也不欢迎你~ 🫤

    // React
    export const Dance = () => {
      return (
        <ul>
          {['💃', '🕺', '💃', '🕺', '💃', '🕺'].map((dance) => (
            <li>{dance}</li>
          ))}
        </ul>
      );
    };
    
    <!-- Vue -->
    <template>
      <ul>
        <li v-for="dance in ['💃', '🕺', '💃', '🕺', '💃', '🕺']">
          {{dance}}
        </li>
      </ul>
    </template>
    

    React:现在听好了 jQuery,我和 Vue 这周要举办一个超 dio 的派对。所有前端框架都会出席,但你猜,谁会收不到邀请?

    Vue:你~~~~~

    React:麻溜回家吧 jQuery,不然就留下来替我重构 💩 山。

    Vue:哈,React 你吓到他了 🫣 哈哈哈

    React:诶~~ 气死你~

    [图片上传失败...(image-1de2da-1656075967394)]

    派对中

    [图片上传失败...(image-499879-1656075967394)]

    Angular:嘿 jQuery,谁邀请你这个过气框架来的?

    Angular:噢,微信小程序是吧?

    Angular:哈,你应该知道他邀请你只是为了拿你说笑的,对吧?😆

    微信小程序:不是这样的~

    Angular:闭上你的臭嘴!你这个缝合怪!🤐

    Angular:倒是你 jQuery,你是怎么过来的?怎么?是你妈妈 Vanilla JS 送你来的嘛?哈哈哈哈 🤣

    jQuery:嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤嘤 😭

    Angular:听好了 jQuery,想要留在这里,你必须要斗赢我。我先来:

    <div *ngFor="let dance of dances">
      <span>{{ dance }}</span>
    </div>
    
    import { Component, OnInit } from '@angular/core';
    
    @Component({
      selector: 'app',
      templateUrl: './dance.component.html',
      styleUrls: ['./dance.component.css']
    })
    export class ProductAlertsComponent implements OnInit {
      products = ['🙅♂️', '🤷♂️', '🙅♂️', '🤷♂️', '🙅♂️', '🤷♂️', '🙅♂️', '🤷♂️'];
      
      constructor() {}
    
      ngOnInit() {}
    }
    

    [图片上传失败...(image-c0c0f5-1656075967394)]

    段子无意引战和指向,请勿对号入座。

    相关文章

      网友评论

          本文标题:美式霸凌,但是前端框架

          本文链接:https://www.haomeiwen.com/subject/hnsbvrtx.html