Wisesofi's picture
Add 5 files
9338d5c verified
raw
history blame contribute delete
788 Bytes
// Components
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];
},
},
});
// eslint-disable-next-line
Vue.config.productionTip = false;
new Vue({
render: (h) => h(HTML),
}).$mount("#app");