Liangzhen Zhu

Results 24 issues of Liangzhen Zhu

For Example, here is my article's HTML content: ```html foo.example.com ``` After I use `Disqus` component on my website, the HTML content is transformed to: ```html foo.example.com ``` Is this...

I hope you can add text alignment support to this component. : - )

enhancement

**问题描述** 看我发的最小复现 demo,仅在 iOS 中有这个问题,textarea 的 input 事件实际上执行的是 doSomething 方法,看我评论里发的视频,当我输入之后,控制台中的输出是 `doSomething` 而不是 `content content` **复现步骤** 1. 最小可复现项目:https://github.com/zhuscat/uniapp-vue3-demo/tree/error-event-bind 2. 分支 error-event-bind 3. 查看 src/pages/index/index.vue 4. 使用 iOS 系统,我的版本是 15.5,但我猜测其他版本也有问题 5. 小程序基础库版本是...

bug
vue3
mp-weixin

按着你的思路正在实现一个 boilerplate,发现一些问题,nodemon 只是在监听 server 目录下的代码,但是 server 也承担着服务器渲染的工作,会用到 client 下的代码,所以说会出现下面的一些问题: 1. 本来客户端代码就有错误,此时运行服务器会崩溃,此时就算改正 client 下的代码也没有用,因为 nodemon 监听的是 server 下的代码,这时必须自己重启服务器 2. 正常运行之后,修改客户端代码可以实现热替换,但如果刷新一个页面,会从服务器端拉取数据,服务器端返回的还是之前没有修改过代码生成的html,接着React 会发现服务器端返回的跟客户端返回的出现不一致,发出一个警告,如下: ![2017-01-05 11 29 42](https://cloud.githubusercontent.com/assets/14963619/21668198/7af953ec-d33a-11e6-8c3c-796733a7ea5b.png) 更新: 看了一下 README 提到了上面的问题,这个问题没有什么解决办法么?😑

### What problem does this feature solve? `compiler-sfc` adds `__name` property to ``, but it does not adds `__name` property to regular ``. Is it appropriate to add `__name` to...

:sparkles: feature request

vue-docgen-api version: 4.75.1 Here is my code for test: ```js import vueDocs from 'vue-docgen-api' var componentInfo vueDocs .parseSource( ` defineProps() `, '/test.vue', ) .then((ci) => { componentInfo = ci console.log(ci.props[0])...

enhancement
breaking (needs major)

### Describe the bug `components.d.ts` does not update when file added/deleted in `src/components`(using vue cli, `pnpm serve` is running). I'm also using Nuxt, I noticed that in Nuxt when file...

1. fix `setTimeout` called directly on component created, causing memory leak on SSR 2. `clearTimeout` before component unmount

``` pod search JMLink ``` 没有 1.2.4 版本 安装依赖的时候也会报错 ``` [!] CocoaPods could not find compatible versions for pod "JMLink": In snapshot (Podfile.lock): JMLink (= 1.2.4) In Podfile: jmlink_flutter_plugin (from...

看到 `entry` 是一个数组,这种情况下用 CommonsChunkPlugin 的原因是什么呢? 我以为是提取多个文件共同的代码才要使用的。 对 webpack 理解不深,望赐教。