missannil

Results 5 issues of missannil

**What version of VS Code are you using?** For example: v1.85.1 **What version of Tailwind CSS IntelliSense are you using?** For example: v0.10.5 **What version of Tailwind CSS are you...

``` import serialize from "dom-serializer"; import { parseDocument } from "htmlparser2"; const html = ` `; const result = serialize(parseDocument(html), { selfClosingTags: true, xmlMode: true}) // result = ` //...

```js const dom: Domhandler.Document = htmlparser2.parseDocument(wxmlText, { xmlMode: true, }); ``` When I use `domUtils.getElementsByTagName('tagName', dom)`, I can pass in the `dom` and get the expected element. However, when I...

比如在一个页面中有 商品列表渲染组件,有购物车组件,有用户组件,每个组件都有自己的store数据,现在的情况下,只能把他们提到一个store中,在要绑定的数据越来越多的情况下,不利于代码阅读和维护。想到的解决办法如下: 1. 多个组件分别些自己的Behavior,通过页面的behaviors属性合并,可是当前情况 只有最后的Behavior中的绑定属性有效(覆盖了前面behavior中的绑定属性) ![image](https://user-images.githubusercontent.com/55321481/117754756-91023900-b24d-11eb-9848-0a9071eb6169.png) 2. 改变绑定方法如图 ![image](https://user-images.githubusercontent.com/55321481/117754959-f22a0c80-b24d-11eb-84c1-f68b7773b1b8.png) 不知道是否合理,总之是想实现多sotre分开写,以达到阅读和维护方便,现在把所有sotre都写在一个里面,多的时候真的头疼,还要去找这个store是属于哪个组件的。这个action是属于哪个组件的。就好比把各个Behavior中的computed合并一样。