MellowCo

Results 9 issues of MellowCo

```vue const click1 = () => { console.log('click1') } const click2 = () => { console.log('click2') } click me ```

answer
zh-CN
243

```vue import { ref } from "vue" const theme = ref("red") const colors = ["blue", "yellow", "red", "green"] setInterval(() => { theme.value = colors[Math.floor(Math.random() * 4)] }, 1000) hello /*...

answer
zh-CN
14

```vue const msg = 'Hello World'; {{ msg }} ```

answer
zh-CN
13

```vue import { ref, nextTick } from 'vue'; const count = ref(0); const counter = ref(null); function increment() { count.value++; /** * DOM is not yet updated, how can we...

answer
zh-CN
11

```vue import { onMounted, inject, onUnmounted } from 'vue'; const timer = inject('timer'); const count = inject('count'); onMounted(() => { timer.value = window.setInterval(() => { count.value++; }, 1000); }); onUnmounted(()...

answer
zh-CN
10

```vue import { inject } from "vue" // Add a piece of code to make the `count` value get injected into the child component. const count = inject('count') {{ count...

answer
zh-CN
9

![image](https://user-images.githubusercontent.com/47939250/176114024-2529a661-5ca9-46f7-807a-547b005db3cf.png) ## 出现原因 * 使用 `https://xxxxx/tongji/index.html` 访问页面时,会将`index.html`拼接到url中导致js加载错误 ![image](https://user-images.githubusercontent.com/47939250/176114426-bfd016b5-0802-4935-9620-44d4c34b329c.png) * 代码中 js的链接地址 ![image](https://user-images.githubusercontent.com/47939250/176114711-f9afb027-4d3e-4dd5-9d88-6619923348ce.png) * 在浏览器中 使用`https://xxxxx/tongji/index.html`访问 尾部的`html`也被拼接进去了 ![image](https://user-images.githubusercontent.com/47939250/176115032-0c0c444a-b696-4385-a583-4049f4be32f0.png) * 使用 `https://xxxxx/tongji/` 访问则正常 ![image](https://user-images.githubusercontent.com/47939250/176115487-22732730-e80c-4e01-9b4a-c41f4fb6ed17.png)

use [unocss/examples/vue-cli4](https://github.com/unocss/unocss/tree/main/examples/vue-cli4) and [unocss/examples/vue-cli5](https://github.com/unocss/unocss/tree/main/examples/vue-cli5) ## vue-cli4 ### `@unocss/webpack` with `0.45.8` ![image](https://user-images.githubusercontent.com/47939250/185912003-c672638c-0e1d-46e6-8760-8080dbaa640f.png) ### is ok ![image](https://user-images.githubusercontent.com/47939250/185912152-27be0b53-da50-4cea-a7c5-3fd6d2f9379a.png) ### `@unocss/webpack` after `0.45.8` like `0.45.9` or `0.45.12` ![image](https://user-images.githubusercontent.com/47939250/185912836-588fc3ea-2119-4b66-a2c6-8028498226a3.png) ### is not work ![image](https://user-images.githubusercontent.com/47939250/185912903-38ab2aa8-fe34-430e-8516-6334c0b118d0.png) ##...

bug
webpack

满足不同gitlab版本state,merge_status ## Summary by CodeRabbit * **New Features** * Added support for configurable GitLab merge request status handling, allowing for more flexible recognition of merge request states. * **Documentation** *...