【前端】Vue中的字符串模板指的是什么
1.Vuejs中的字符串模板只是是什么?
回答
就是用在组件选项里用template: ""
指定的模板,对应地还有一种是在单文件组件里用<template><template/>
指定的模板。
var p = new Vue({ template: '<MyComponent></MyComponent>'
})
通过template选项生成的模板
我去,还真有人问这问题,是不是应该给教程提个pr...
以上是 【前端】Vue中的字符串模板指的是什么 的全部内容, 来源链接: utcz.com/a/78398.html