14 lines
154 B

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