<span>{state}</span>
<script>
export default {
data() {
return {
x: 'waiting'
};
},
computed: {
state: ({ x }) => x
}
</script>