Abigmiu

Results 24 comments of Abigmiu

为什么可以触发`updated`.

> updated 是因为vnode里面包含了`state`这个状态?

![image](https://user-images.githubusercontent.com/43983920/142395702-04c7fd79-5a94-44d2-9358-93ec6e19814e.png) 笔误了`$`写成`&`了

我在使用nuxt3 引入 fectui时遇到了点问题。 网上搜不到资料。 所以不得以在issue提问。 图片是我配置fectui 的步骤。 但是不起作用。 请问是我哪里有问题 ![wecom-temp-45624cf541bcd8a605603427d1f04679](https://user-images.githubusercontent.com/43983920/174935818-5c33db3e-2fa8-41ff-941f-e2a19610f561.png) ![wecom-temp-a7b5b20fbe21290007aac1eb17322993](https://user-images.githubusercontent.com/43983920/174935832-74d20be6-81f7-4b0f-a865-064bdb2d1ab9.png) ![wecom-temp-6040ace23d0cdb0c0be3fc1ca34f6f18](https://user-images.githubusercontent.com/43983920/174935841-c5a98659-affc-4f1e-b63d-6a2dd8b1f500.png)

> @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。