LandingPage.vue内で下記のようにpuppeteerをimportしようとするとエラーが発生してしまいます。
何がいけないのでしょうか。
<script> //import SystemInformation from './LandingPage/SystemInformation' import puppeteer from 'puppeteer'; export default { name: 'landing-page', //components: { SystemInformation }, methods: { async gopage(){ const browser = await puppeteer.launch({ args: ['--no-sandbox', '--disable-setuid-sandbox'], executablePath: getChromiumExecPath() }); const page = await browser.newPage(); await page.goto(url); } } } </script>
エラーの内容
Uncaught SyntaxError: Unexpected token { at createScript (vm.js:80) at Object.runInThisContext (vm.js:139) at Module._compile (module.js:606) at Object.Module._extensions..js (module.js:653) at Module.load (module.js:561) at tryModuleLoad (module.js:504) at Function.Module._load (module.js:496) at Module.require (module.js:586) at require (internal/module.js:11) at Object.<anonymous> (C:\xampp\htdocs\test\snk_set2\node_modules\puppeteer\lib\cjs\puppeteer\common\Target.js:19)
回答1件
あなたの回答
tips
プレビュー