您可以基于window.location方法更改文本或图像吗?

时间:2019-03-04 21:29:40

标签: javascript vue.js

假设我有3台服务器,如下所示:

https://server-1.com
https://server-2.com
https://server-3.com 

在我的Vue应用程序内部,我想根据我所在的服务器切换出一张图片。我可以使用

之类的东西吗
v-bind:src="server1.image"

访问图像?

我在想Vue看起来像这样:

var app = new Vue({
    el: '#app',
    server1: { 
              image1: imagelocation
              image2: imagelocation 
             },
    server2: { 
              image1: imagelocation
              image2: imagelocation 
             },
    server3: { 
              image1: imagelocation
              image2: imagelocation 
             }

});

这可能吗?我使用Vue不正确吗?

1 个答案:

答案 0 :(得分:0)

我认为您应该将#import设为计算属性:https://vuejs.org/v2/guide/computed.html#Basic-Example

您可以根据函数中想要的内容来设置服务器的值。