Results 66 comments of xialvjun

I have a API proposal. Hope the author can consider about it: ```js import flvjs from 'flv.js'; new Dplayer({ video: { url: 'xxx', type: 'flv', flvjs: flvjs, // send flv.js...

run in git bash (for which command) ``` 01418019@SF0001418019A MINGW64 ~ $ which powershell /c/Windows/System32/WindowsPowerShell/v1.0/powershell 01418019@SF0001418019A MINGW64 ~ $ which pwsh /c/Program Files/PowerShell/7/pwsh 01418019@SF0001418019A MINGW64 ~ $ powershell -NoLogo -NoProfile...

@virgo47 I installed PS7(pwsh) which didn't overwrite the default PS5(powershell) in windows10.

sorry, seems this code is wrong.

I have read `reactivue`'s code, it seems it's not that easy to change `defineComponent` to return a `render` function. I've written some ideas to achieve this before, but it may...

I don't understand. If I still got a `.vue` file, how can I publish my vue component to npm without forcing the user config vue-cli to include `node_modules/my_package`.

@zouhangwithsweet 一定要 .vue 文件吗, 不能 .tsx 文件吗?

```typescript // main.ts import pg_promise from 'pg-promise'; import {sql} from 'squid'; import * as schema from './schema'; const pgp = pg_promise()(`postgres://username:password@host:port/database`); (async () => { let persons: schema.person[] = await...