If you're using Vue2, you may not be able to access props directly through this[key]. Use this.$options.propsData[key] instead:
beforeCreate() { console.log('before create: ', this.$options.propsData.myProp) }