Chaiwei

Results 6 comments of Chaiwei

I think this is something similar to this https://www.telerik.com/blogs/dynamic-components-vue-component

I created a MyVuetableFieldCheckbox.vue ```js import VuetableFieldCheckboxMixin from 'vuetable-2/src/components/VuetableFieldCheckboxMixin.vue' export default { name: 'vuetable-field-checkbox', mixins: [VuetableFieldCheckboxMixin], } ``` then use it like ```js import VuetableFieldCheckbox from "../../Components/MyVuetableFieldCheckbox" export default {...

Understood that -al or -A command might not work in certain FTP server. Is that possible to put that additional flag options into the config options, so it is up...

For proftpd, you need to create an .ftpaccess file in the respective folder or your server proftpd.conf with following code in order to view the hidden files. `ListOptions "-a"` http://www.proftpd.org/docs/directives/linked/config_ref_ListOptions.html...

You can ignore the error by adding "[skipLibCheck](https://www.typescriptlang.org/tsconfig#skipLibCheck)": true to your compilerOptions in your `tsconfig.json` file. ```json "compilerOptions": { // ... the remaining options "skipLibCheck": true, } ``` This will...

I think it is supported in the premium version of intelephense. Alternatively, you can download the [eloquent.php.txt](https://github.com/bmewburn/vscode-intelephense/issues/708#issuecomment-538708091) file and place it in your project's root directory, renaming it to `_ide_helper_eloquent.php`...