码迷,mamicode.com
首页 > 其他好文 > 详细

template 模版制作

时间:2018-02-27 21:13:12      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:doc   你好   ack   meta   src   mobile   detection   class   orm   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>template模版</title>
    <meta name="flexible" content="initial-dpr=2,maximum-dpr=3" />
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta content="yes" name="apple-touch-fullscreen">
     <meta content="telephone=no,email=no" name="format-detection">
    <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
    <script src="../assets/js/flexible_css.js"></script>
    <script src="../assets/js/flexible.js"></script>
    <script src="../assets/js/vue.js"></script>
</head>
<body>
    <h1>template模版  三种写法</h1>
    <div id="app">
        {{message}}
    </div>
    <template id="dd2"> <!--  第二种 -->
        <h2 style="color:red;">我是template标签模版2</h2>
    </template>
     <script type="x-template" id="dd3">  //方法3
        <h2 style="color:red">我是script标签模版3</h2>
    </script>
</body>
<script type="text/javascript">
    var app=new Vue({
            el:"#app",
            data:{
                message:"hello 你好",
            },
            // template:`<h2 style="color:red">我是选项模版</h2>`,   第一种
            template:"#dd2",     //第二种
            // template:"#dd3"  //第三种

    })
</script>
</html>

 

template 模版制作

标签:doc   你好   ack   meta   src   mobile   detection   class   orm   

原文地址:https://www.cnblogs.com/jinsuo/p/8480371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!