controller return json to vue via twig; init vue App

This commit is contained in:
2021-05-27 17:36:33 +02:00
parent b89cffce68
commit b1d7e543fc
11 changed files with 138 additions and 52 deletions

View File

@@ -0,0 +1,18 @@
<template>
hello
</template>
<script>
import { mapState } from 'vuex';
export default {
name: "App",
components: {},
computed: mapState([
'activity'
])
}
</script>
<style lang="scss" scoped>
</style>