In Vue, when you are passing a boolean type as a prop with an explicit true value, you can use the following shorthand.

vue
<template>
  <!-- you can use this -->
  <BlogPost is-published />

  <!-- instead of this -->
  <BlogPost :is-published="true" />
</template>