问答详情
源自:2-1 创建第一个Vue实例

有一个简单的问题

我想让两个button的颜色不一样使用{{color}}这个形式进行连接,但是得不到想要变化的颜色。


代码如下:

<!DOCTYPE html>

<html>


<head>

  <meta charset="text/html;charset=utf-8">

  <title>Vue js</title>

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

  <link rel="stylesheet" href="main.css">

</head>


<body>

<div id="app">

  <counter heading="赞" color="green"></counter>

  <counter heading="滚"></counter>

  

</div>


<template id="counter-template">

  <div>

  <h1>{{heading}}</h1>

  <button @click="count+=1" style="background: {{color}}">{{count}}</button>

</div>

</template>

<script>

  Vue.component('counter',{

    template:'#counter-template',

    props:['heading','color'],

    data:function(){

      return{count:0};

    }

  });

  new Vue({

    el:'#app'

  })


</script>

</body>


</html>


提问者:如此丶 2018-10-30 21:21

个回答

  • 慕移动6361669
    2018-10-31 17:22:35

    <button @click="count+=1"

    :style="{background:color}

    ">{{count}}</button>