aot-loader icon indicating copy to clipboard operation
aot-loader copied to clipboard

Add Vue SFC support

Open egoist opened this issue 6 years ago • 0 comments

<template>
	<div>{{ count }}</div>
</template>

<aot>
// pre-evaluate at build time
module.exports = () => ({
  count: 0
})
</aot>
{
  resourceQuery: /blockType=aot/,
  loader: 'aot-loader/vue'
}

egoist avatar Nov 19 '18 08:11 egoist