Nuxt head附加外部js到body底部
head: { script: [ { type: 'text/javascript', src: 'https://a.optmnstr.com/app/js/api.min.js' } ] }

通过这种方式会将js添加到head头部,如何添加到尾部呢?

head: { script: [ { type: 'text/javascript', src: 'https://a.optmnstr.com/app/js/api.min.js', body:true } ] }

这样会将js添加到文档尾部

鲸之声为您拼命加载中...