getting data from api, displaying projects as cubes

This commit is contained in:
2020-08-24 12:53:09 +02:00
parent 88a9a31768
commit 68529ed503
10 changed files with 233 additions and 20 deletions
+8
View File
@@ -0,0 +1,8 @@
// https://forum.vuejs.org/t/how-to-use-helper-functions-for-imported-modules-in-vuejs-vue-template/6266/5
export default {
methods: {
deg2rad: function (deg) {
return deg * (Math.PI / 180)
}
}
}