Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <body>
- <div id="app">
- <div class="demo" :style="{backgroundColor: color}"></div>
- <div class="demo" :style="myStyle"></div>
- <div class="demo" :style="[myStyle,{height: width+'px'}]"></div>
- <hr>
- <input type="text" v-model="color">
- <input type="text" v-model="width">
- </div>
- <script>
- new Vue({
- el: '#app',
- data: {
- color: 'gray',
- width: 100
- },
- computed:{
- myStyle: function () {
- return {
- backgroundColor: this.color,
- width: this.width + 'px'
- }
- }
- }
- });
- </script>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement