Использую Vue Cli.
Пытаюсь подключить вот этот плагин
https://www.npmjs.com/package/vue3-smooth-scroll?r... , получаю
warning :
[Vue warn]: Failed to resolve directive: smooth-scroll
at <App>
error:
Uncaught TypeError: Cannot read property 'created' of undefined
Подскажите, как подключить?
в компоненте
<template>
<section>
<div>
<h1>Title</h1>
<a href='#form' v-smooth-scroll role='button'>Down</a>
</div>
<form id='form'>
<h3>Form</h3>
</form>
</section>
</template>
<script>
export default {
name: 'App',
components: {},
data() {
return {}
},
}
</script>
в main.js
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')
или в vue.config.js?