```TS import { createApp } from 'vue'; import masonry from 'vue-next-masonry';
``TS
import { createApp } from 'vue';
import masonry from 'vue-next-masonry';
createApp(...)
.use(masonry)
.mount(...);
`
In your Vue template...
`HTML`
{{ number }}
Here's a codesandbox example
Everything is similar to the original component. You can learn more about props/config here.
If you are using a to load child items, use the prop :resolve-slot="true".
`HTML``