export default {

props: {
  /*
  property: {
    type: String|Number|Boolean|Array|Object|Date|Function|Symbol,
    default: null,
    required: false
  },
  */
},

data() {
  return {
    // field: 'value'
  }
},

computed: {
  // computed properties are cached based on their dependencies
  /*
  computedProperty() {
    return 'value'
  },
  */
},

methods: {
  // Methods run whenever a re-render happens, their results aren't cached.
  /*
  onClick() {
    this.$emit('click-happened')
  },
  */
},

}