我在Vue.js中制作了一个应用,试图在Nuxt.js中进行调整。
对于滚动浏览,我在Vue.js中使用了jquery.easing
,所以我想在Nuxt.js中也这样做。
就像您在Vue.js main.js
文件中导入jQuery一样,我在Nuxt中创建了一个插件来添加jQuery和require("jquery.easing")
:
plugin / jqueryeasing.js
import Vue from "vue";
import jquery from "jquery";
require("jquery.easing");
Vue.prototype.jquery = jquery;
我还将其链接到我的nuxt.config.js
文件:
const webpack = require("webpack");
module.exports = {
/*
** Headers of the page
*/
head: {
title: "resume",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "undermaintenance" }
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
css: [
// this line include bootstrap.css in each html file on generate
"~/node_modules/bootstrap/dist/css/bootstrap.css",
// main css file in document
"assets/css/main.css"
],
/*
** Plugin section
*/
plugins: [
"~plugins/bootstrap.js"
"~plugins/jqueryeasing.js",
],
/*
** Build configuration
*/
build: {
/**
* add external plugins
*/
vendor: ["jquery", "bootstrap"],
plugins: [
new webpack.ProvidePlugin({
$: "jquery"
})
],
/*
** Run ESLint on save
*/
extend(config, { isDev, isClient }) {
if (isDev && isClient) {
config.module.rules.push({
enforce: "pre",
test: /\.(js|vue)$/,
loader: "eslint-loader",
exclude: /(node_modules)/
});
}
}
}
};
jQuery在我的Bootstrap中运行得像灵符。
我不知道为什么,但是我有这个
typeError:$ .extend不是函数。
它来自我的node_modules/jquery.easing/jquery.easing.js
文件。
$.extend($.easing, {
def: "easeOutQuad",
swing: function(x) {
return $.easing[$.easing.def](x);
},
easeInQuad: function(x) {
版本信息:
"jquery": "^3.3.1",
"jquery.easing": "^1.4.1"
我试图:
"jquery-ui": "^1.12.1"
,nuxt.config.js
文件中使用CDN和脚本jQuery.easing
我在做什么错?它在Vue.js中如何工作?
答案 0 :(得分:1)
如果您使用的是Jquery缓动,则简单的方法是像这样添加它:
1- Inside your nuxt.config.js
script: [
{
src:
'https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js'
}
]
答案 1 :(得分:0)
J-query和Nuxt.js并不是最好的朋友。
我使用了一个名为vuetifyjs的插件。您会发现goTo
滚动功能,可以在其中修复包括平滑滚动(使用内置缓动功能),持续时间和偏移量在内的选项。