Fritz Lin
Fritz Lin
We can continue discussion in: #8
@humblecoder `v-model` on `` should be a string https://fritx.github.io/vue-at/#/en/vmodel
@humblecoder you should better declare properties in `data` explicitly, which is a Vue convention. Otherwise, you would have to call something like `$set` xD > Data Initialization Vue’s data observation...
Anyway, it's not bad to make it clear as possible in documentation and anywhere. :+1:
@humblecoder it's not required to have a data named "html". It's just a demo, where we have a data named "html" and pass it to the ``. If we have...
@lefuturiste I was using dotenv-cli, hope that helps with you: ```sh npm i -D dotenv-cli ``` ```diff "scripts": { - "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", + "dev": "dotenv webpack-dev-server...
is it diffcult to use other building tools instead of `make`? i'm using windows and can't work it out..
Related in vscode: - https://github.com/Microsoft/vscode/issues/16599 https://github.com/Microsoft/vscode/issues/16599 - insert final new line should also trim additional lines https://github.com/Microsoft/vscode/issues/30047 ```js // in vscode "files.trimFinalNewlines": true ```
我这边也是 `"miniprogram-api-typings":"^3.5.0"` ,这样可以解决: ```ts // tsconfig.json { "compilerOptions": { "typeRoots": ["typings"] // ... ``` ```ts // typings/index.d.ts // ... declare namespace DB { interface Query { update(options?: RQ): Promise }...
+1 Related: https://github.com/egoist/nwjs/issues/13 Our app is to be distributed in 32bits, so I need a 32bit version as well as 64 in my machine. Personally, I use [nwjs](https://github.com/egoist/nwjs) for global...