2
これはVueの2 + ブートストラップ-VUEで私の最初のステップである、とのように私は、動的属性の名前を変更する方法を把握しようとしています小さな画面解像度でツールチップの位置が変わります。以下ヴュー2 +ブートストラップ-VUEは - 動的属性
JSコードが正常に動作しますが、ツールチップが彼の位置を変更しない=( は私が私のミスを改善してください。
.pug
JS
'use strict';
import Vue from 'vue';
import BootstrapVue from 'bootstrap-vue';
document.addEventListener("DOMContentLoaded", function() {
Vue.use(BootstrapVue);
new Vue({
el: '#freshbroccoli',
data: {
windowWidth: null,
position: this.windowWidth >= 480 ? 'left' : 'bottom'
},
mounted() {
this.$nextTick(function() {
window.addEventListener('resize', this.getWindowWidth);
this.getWindowWidth();
});
},
methods: {
getWindowWidth() {
this.windowWidth = document.documentElement.clientWidth;
console.log('this.windowWidth >= 480 ? \'left\' : \'bottom\'', this.windowWidth >= 480 ? 'left' : 'bottom', '\n', this.windowWidth);
}
},
beforeDestroy() {
window.removeEventListener('resize', this.getWindowWidth);
}
});
});
ブラウザ - クロム
ブラウザのコンソール - クローム
v-b-tooltipは、ディレクティブであり、コンポーネントではありません。 OPはディレクティブに動的修飾子を追加しようとしています。 – Bert
@Bertああ、ありがとう。私は私の答えを更新します。 – Franey