Abigmiu
                                            Abigmiu
                                        
                                    为什么可以触发`updated`.
> updated 是因为vnode里面包含了`state`这个状态?
 笔误了`$`写成`&`了
我在使用nuxt3 引入 fectui时遇到了点问题。 网上搜不到资料。 所以不得以在issue提问。 图片是我配置fectui 的步骤。 但是不起作用。 请问是我哪里有问题   
> @abigmiu [nuxt-demo](https://github.com/fect-org/example/tree/master/nuxt-getting-stared) 可以看一下nuxt的example。由于`vite-plugin-style-import`做了`breakChange`但是未按照`semver`进行升级你可以参照这个如果还有遇到问题可以联系我。 可以运行了, 谢谢你
一样 `TypeError: req.end is not a function`
```typescript function swapPairs(head: ListNode | null): ListNode | null { if (head === null || head.next === null) { return head; } let nextNode = head.next; head.next = swapPairs(nextNode.next); nextNode.next...
[typecho-plugin-Restful](https://github.com/moefront/typecho-plugin-Restful) 这是一个将 Typecho 博客 RESTful 化的插件。启用此插件,你可以通过请求 API 向站点请求或写入信息(获取文章内容、获取评论、添加评论等)。
> pointer 是指这样吗 ```html Button Button Button Button Button Button 文字结束 ```
`isDef(i) && isDef(i = i.data) && isDef(i = i.registerRouteInstance)` 这一句不理解。 isDef(i = i.data) `i = i.data` 不是赋值操作嘛。 为啥需要将 i.data 赋值给 i。