【发布时间】:2017-11-14 16:02:38
【问题描述】:
这是我的组件。
el.focus() 插入时确实有效,但我在控制台上得到了[Vue warn]: Property or method "v" is not defined on the instance but referenced during render。
如何解除警告?
<script>
export default {
directives: {
focus: {
inserted (el) {
el.focus()
}
}
}
}
</script>
<style lang="stylus" scoped>
input
width: 300px
height: 30px
border: 1px solid #000
</style>
<template lang="jade">
div
input(v-focus)
</template>
【问题讨论】:
标签: javascript vue.js pug