鲸之声主题基于nuxt编写,ant design ui框架,注意:皮肤里不可使用nuxt-link作为a标签
var extendVue = {
head:{
link:[{
rel:"stylesheet",
href:"" //第三方样式
}],
script:[{
type:"text/javascript",
src:"",//第三方js
body:true//js放到body底部执行
}]
},
data: {
//数据部分
},
watch:{
},
computed:{
},
methods: {
//方法
},
mounted() {
//确保第三方js文件加载完毕
$.getScript('第三方js', function () {});
}
}
使用示例
//获取博客详情
this.hostVm.$axios(`/api/blogs/${id}`).then(res=>{
if(res.statusCode==200){
this.currentBlog=res.data
}else{
this.hostVm.$message.error(res.msg)
}
})