我正在使用 Vue 增强 Web 应用程序中的页面。过去我编写了单个文件组件,并且发现使用<template>
标记在文件顶部定义 html 模板很方便。
定义 Vue 根实例时有没有办法使用这个标签?还是我需要在 Vue 选项对象的模板属性中放入一个字符串?
我正在使用 Vue 增强 Web 应用程序中的页面。过去我编写了单个文件组件,并且发现使用<template>
标记在文件顶部定义 html 模板很方便。
定义 Vue 根实例时有没有办法使用这个标签?还是我需要在 Vue 选项对象的模板属性中放入一个字符串?
您可以使用 x-template 语法,就像这样
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<script type="text/x-template" id="message-template">
<div >
{{message}}
</div>
</script>
<div id="app"> </div>
<script>
var graphapp = new Vue({
el: "#app",
data: {
message: "hi there"
},
template: "#message-template"
});
</script>
</body>
</html>
值得注意的是,如果您的编辑器不理解 x-template 块中的 html,您也可以使用text/html
。
您还可以在页面中定义许多组件。当您从纯 html/js 升级页面但无法完全更改时,这非常有用
参考:https ://vuejs.org/v2/guide/components-edge-cases.html#X-Templates
似乎截至 2020 年,您几乎可以直接使用 HTML5 标签:
<template v-if="ok">
<h1>Title</h1>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
</template>
在某些情况下您可能不想使用的原因<template>
是避免无效的 HTML5 验证和/或呈现错误(请参阅Vue.js DOM 模板解析警告)。