capdiem

Results 106 comments of capdiem

https://github.com/NuGet/Home/issues/11601 This seems to be a problem with nuget. I don't know what version of nuget the dotnet nuget command uses. If it is up-to-date every time, this problem may...

我们作为组件库应该尽量保持单一组件最小的功能,Tooltip现在的设计是可以包裹任何元素,因为要依赖元素触发所以写法会有点繁琐。关于Tooltip的语法设计如果没有更好的方式,我们不会修改它,对于你的问题,我建议你再封装一下,例如**TooltipButton**: ``` razor @inherits MButton @base.BuildRenderTree @Tooltip @code { [Parameter] public string? Tooltip { get; set; } private bool Disabled => string.IsNullOrWhiteSpace(Tooltip); } ``` 使用: ``` razor CLICK ME ```

你是想在编辑模式下调整图片的大小吗?

目前不支持,但quilljs社区可以通过 [quill-blot-formatter](https://github.com/Fandom-OSS/quill-blot-formatter) 来实现调整。我们可以支持一下,但不会在0.5.0中发布。

我没有复现欸。

**OnClickAsync**方法把`void`改成`Task`有用吗?

我们会在文档重构之后加入该功能。