<script>
export default {
data() {
return {
a: 1
};
},
computed: {
"with-hyphen": a => a * 2
}
</script>