vueday_01

vue的简单使用

vue狂神笔记

1.v-model的使用

<!DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

</head>
<body>
<!--view 模板-->
<div id="app">
    <h1>{{message}}</h1>
<!--
    <h1 v-if="ok===false">
        OOOOOO
    </h1>
    <h1 v-else="ok===true">
      okok
    </h1>-->

<!--    <li v-for="(item ,index) in messages">
        {{item.message}}-&#45;&#45;{{index}}
    </li>-->


<!--
    <button v-on:click="sayHi">尼玛</button>-->

    <!--双向判定  v-model屏闭了checked,value-->
输入的文本<input type="text" v-model="peopleSex">{{peopleSex}}
    <br>
<!--v-model绑定的是value属性的值-->
    <input type="radio" name="sex" value="" v-model="peopleSex"><input type="radio" name="sex" value="" v-model="peopleSex"><p> 选中了{{peopleSex}}</p>


</div>



<script type="text/javascript" src="https://unpkg.com/vue"></script>
<script>
    var vm=new Vue({
        el:"#app",
        //Model:数据
        data:{
            peopleSex:"",
            message:"华哥哥"
        },
        methods:{
            sayHi:function () {
                alert(this.message)
            }
        }
    });
</script>
</body>
</html>

2.component的例子

<!DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>


</head>
<body>
<!--view 模板-->
<div id="app">
<!--
     item是items遍历出来的每一个属性
    :message是绑定的数据名称
    "item"是被绑定的数据

-->
    <biaoqian v-for="item in items" v-bind:message="item">

    </biaoqian>
</div>


<script type="text/javascript" src="https://unpkg.com/vue"></script>

<script>
    //定义一个组件
    Vue.component("biaoqian",{
        /*props是接受的数据,要使用数组接受并且用''引起来   */
        props:['message'],
        template:'<h1>{{message}}</h1>'
    });

    var vm=new Vue({
        el:"#app",
        //Model:数据
        data:{
            items:["java","php","c++"]
        }
    });
</script>
</body>
</html>

3.mounted的使用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div id="vue">
    <div>{{info.name}}</div>
</div>

<script type="text/javascript" src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdn.bootcss.com/qs/6.5.2/qs.min.js"></script>
<script type="text/javascript">
    var vm=new Vue({
        el:"#vue",
        /*data是一个属性  data()是方法*/
        data(){
            return{
                //必须和json字符一样
                info:{
                    name:null,
                    adddress:{
                        street:null,
                        city:null,
                        country:null

                    }

                }

            }
        },
        //mounted是用于ajax的请求在页面加载的时候发起请求
        mounted(){
            axios.get('data.json').then(response=>(this.info=response.data))

    }
    });
</script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值