How to solve the problem of error reported in nuxt.js by Unexpected token import?

problem description

an error is reported when using vue-qr to generate a QR code.

< template >
< div class= "bgfff" >

<vue-qr :size="200" text="hello world!"></vue-qr>

< / div >
< / template >
< script >
import ClipboardJS from "clipboard";
import VueQr from "vue-qr";
import {

Toast

} from "vant";
export default {

head() {
    return {
        title: ""
    };
},

components:{
    VueQr
},
data() {
    return {
        ddkUrl: require("~/assets/images/help/dkd-qrcode.png"),
        config:{
            value:"www.baidu.com"
            // imagePath:
        },
     
},

};
< / script >

Aug.19,2021

Hello, landlord! Since this is server-side rendering, when selecting components, you should first investigate whether the selected components support server-side rendering. Obviously, vue-qr does not support server-side rendering. You can try this https://github.com/davidshimj.

. < hr >

if it is helpful, please click to adopt it, thank you ~

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32be1-2be35.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32be1-2be35.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?