|
|
|
x-clock |
|
x-interval |
|
|
|
const app = new Vue({ |
|
el: '#app', |
|
delimiters: ["<", ">"], |
|
components: { |
|
Aside |
|
}, |
|
data: () => ({ |
|
msg: "Welcome to the world of Basketball!", |
|
dots: "Returns the dot product from the vector broadcaster", |
|
orientation: "Returns the orientation of the vector broadcaster", |
|
rotation: "Returns the rotation matrix representing the vector broadcaster", |
|
scale: "Returns the scale factor of the vector broadcaster", |
|
velocity: "Returns the velocity of the vector broadcaster in global coordinates", |
|
}), |
|
methods: { |
|
swap: function () { |
|
[this.msg, this.velocity] = [this.velocity, this.msg]; |
|
}, |
|
}, |
|
}); |
|
|
|
|
|
Vue.config.productionTip = false; |
|
|
|
new Vue({ |
|
render: (h) => h(HTML), |
|
}).$mount("#app"); |