JellyBool

17773 经验值

你看看这个源码来意会一下:

/**
     * Run a map over each of the items.
     *
     * @param  callable  $callback
     * @return static
     */
    public function map(callable $callback)
    {
        $keys = array_keys($this->items);

        $items = array_map($callback, $this->items, $keys);

        return new static(array_combine($keys, $items));
    }


 public function each(callable $callback)
    {
        foreach ($this->items as $key => $item) {
            if ($callback($item, $key) === false) {
                break;
            }
        }

        return $this;
    }

使用 PhpStorm 的 live template

这个感觉是视频的原因,我看看又拍云的配置。

=====分割线=====

视频问题我这边修复了

正常情况下不就是一个 v-bind:class 么?