ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Maino on February 13, 2024, 02:18:58 pm
-
Work environment is vue.js. Error during initial setup. The "pqgrid": "file:/src/components/pqGrid" path was dependent on the package.json file. There are folders decompressed in the path '.src/components/pqGrid.When you do the initial setting and run the source, an error as shown in the figure occurs. What should I do??
-
Maino
Is it possible for you to share project files which can help reproduce and check error, as an attachment.
EDIT -----------
Please try replacing
module.exports = pq;
with
export default pq;
in pqgrid js file.
Regards
-
The pqgrid.min.js file is a file that has been downloaded and decompressed since version 9.1.1. The index.js file contains module.exports = pq, the index.js file contains module.exports = pq, and the index.js file is coded as module.exports require ('/pqgrid.min.js'). The package.json file is a file that has been downloaded and decompressed since version 9.1.1., pq confirmed that the import is good.(import pq from 'pqgrid';)
-
Is the error resolved or are you still facing the same error.
-
Currently in package.json of pqgrid, 'jszip' is using "2.5.0", can I use version 3.1.5?? when I npm install, The warning "npm WARN pqgrid@9.1.1 requires a peer of jszip@2.5.0 but none is installed. You must install peer dependencies yourself" occurred. And jszip and pako are downloaded at npm install in the current "C:\pqGrid\FRONTEND\node_modules\pqgrid\node_modules" path.
-
pqgrid works only with jszip v2.5.0, there are breaking changes between jszip v2.5.0 and v3.1.5
-
I lowered the jszip version to 2.5.0 and installed pako to the 0.2.9 version, but an error occurred as shown in the picture.
-
Please mention something about the setup of your project, the version of Vue.js and if there is tsconfig.js file in your project?
-
The project settings file and tsconfig file.
-
Thanks for sharing project info. Please use
"module": "esnext",
"target": "es2015",
in tsconfig.json file.
-
{
"compilerOptions": {
"module": "esnext",
"target": "es2015",
"forceConsistentCasingInFileNames": false
}
}
tsconfig.json source
When I changed the source, I got an error like the picture, and when the source runs, I keep getting an error like the 1.png I asked today...
And should I use tsconfig? Originally, there was no tsconfig, but when I added it, I got a phrase like scriptError.png.
-
There are easy to folllow steps to create pqgrid seed project in vue.js here: https://paramquery.com/pro/tutorial#topic-firstvue. If these steps are followed then no errors are encountered and tsconfig.json file is not created.
You can download the sample Vue.js project with pqgrid created using @vue/cli here: https://paramquery.com/Content/vue-hello-world.zip
-
I keep getting errors like 3.png from the first question.... pggridSetting has files that have been unlocked from the grid attachment. And tsconfig.json deleted.
-
As mentioned in my previous post, please use recommended tool like @vue/cli to create your project to get rid of the errors.
You can download the sample Vue.js project with pqgrid created using @vue/cli here: https://paramquery.com/Content/vue-hello-world.zip
It doesn't make any difference whether the pqgrid is used remotely from npm or used as local module as far as the errors are concerned.
Individual files shared by you don't help in reproducing the errors, there could be some issue in the setup of your project. Please share your entire project without the node_modules folder.