Bom dia.
Estou tentando usar o fancytree (https://www.npmjs.com/package/jquery.fancytree) com o vue
Mas fica dando o seguinte erro:
Uncaught Error: Fancytree assertion failed: Fancytree requires jQuery UI (http://jqueryui.com)
OK. Esse erro é porque não encontrou o jquery-ui. Só que eu instalei o jquery-ui (https://www.npmjs.com/package/jquery-ui-dist)
E tentei setar no webpack assim:
plugins: [
new webpack.ProvidePlugin({
$: 'jquery/dist/jquery.js',
jQuery: 'jquery/dist/jquery.js',
'jquery-ui': 'jquery-ui-dist/jquery-ui.js',
ui: 'jquery-ui-dist/jquery-ui.js' ,
'$.ui': 'jquery-ui-dist/jquery-ui.js'
})
]
e assim tambem
resolve: {
alias: {
'jquery-ui': 'jquery-ui-dist/jquery-ui.js'
}
},
e no meu arquivo .vue eu importo assim
import 'jquery-ui';
import 'jquery.fancytree/dist/jquery.fancytree-all.min.js';
Mas esse erro continua..
Uncaught Error: Fancytree assertion failed: Fancytree requires jQuery UI (http://jqueryui.com)
Onde estou errando ? Abraço