web-dev-qa-db-ja.com

vue jsのみを使用して背景色を変更する方法

import Vue from 'vue'
import App from './App'
import BootstrapVue from 'bootstrap-vue'
import 'bootstrap/dist/css/bootstrap.css'
import 'bootstrap-vue/dist/bootstrap-vue.css'




Vue.config.productionTip = false
Vue.use(BootstrapVue);


/* eslint-disable no-new */
new Vue({
  el: '#app',
  components: { App },
  template: '<App/>'
})
<template>
  <div id="app">
    <webpage></webpage>
  </div>
</template>

<script>

import webpage from "./components/webpage"


export default {
  name: 'app',
  components : {
    webpage
  }
}
</script>

<style>

</style> 

vueバインドスタイリングでv-bind:style='{backgroundColor : color}コマンドを使用して要素の背景色を変更しようとしましたが、マージンとパディングを削除しようとしましたが、完全な高さではありませんCSSのbody要素ですが、写真に表示されているように機能しません。

#wrapper{
   
    width: 650px  ;
    height: auto;
    background-color: rgb(198, 241, 200);
    margin: 0 auto;
    margin-top: 200px;
    border-radius: 10px;
}
html, 
body {
    margin: 0;
    padding: 0;
    background-color:rgb(250, 28, 65);
}

スクリーンショット

4
user10462904

次のように、要素をスタイルオブジェクトにバインドします。

  <div :style="myStyle" id="wrapper">

あなたのデータオブジェクトで:

     data(){
       return{
         myStyle:{
            backgroundColor:"#16a085" 
            }
          ...
           }
         }

あなたはチェックすることができます this 私はVueロジックに影響を与えることなくcssルールにいくつかの変更を加えました

3