For HTML, check pattern_library_public.html.twig & pattern_library_admin.html.twig
<template>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {};
},
computed: {},
watch: {},
beforeMount () {},
mounted () {},
methods: {},
}
</script>
const state = {
};
const getters = {
// getter (state, getters) {
// return state.param;
// },
// getter: (state) => (value) => {
// return state.param[value];
// },
};
const actions = {
// action ({ commit, state, dispatch, rootState, rootGetters }, data) {
// commit('mutation');
// },
};
const mutations = {
// mutation (state, param) {
// state.param = param;
// },
};
export default {
namespaced: true,
state,
getters,
actions,
mutations
}