import Chat from './chat.js' import LikeButton from './like-button.js' import { Name } from './name.js' export default { data: ()=> ({ likeThreshold: 0, channel: 'demo', admin: null }), methods: { messageObjects: Chat.methods.messageObjects, likeObjects: LikeButton.methods.likeObjects, }, template: `

Chat Channel:

Example 1

Only show me objects with more than likes.

Example 2

Only show me objects that has liked.

` }