我有一个表,其中包含了一些行的结果,用户可以看到详细的结果通过打开任何行,也有下载选项的选项。这应该是下载row.so的全部结果,基本上我想下载一个包含外部css和js的视图,我正在使用dompdf包,但它只下载/流的html与数据,而不是我的脚本,应该执行和css。
//在我的控制器
use PDF;
public function createPDF($id = 5) {
// retreive all records from db
.... defining data variables
$data = [
我尝试过延迟加载组件,也成功地加载了延迟加载模板,但我没有成功地将这两者结合起来。
以下是我如何延迟加载组件:
// This is in my main.js
const router = new VueRouter({
routes: [
{ path: '/lazy', component: () => import('./lazy.js') }
]
})
// And this is in lazy.js
export default {
template: '<div>Lazy loa
以下是错误消息:
Vue packages version mismatch:
- vue@2.5.2
- vue-template-compiler@2.5.13
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-i