我是Nuxt js的新手,在使用
更改页面时遇到一些CSS问题如果我使用导航到另一页面,则buefy CSS无法正确加载
刷新后,它会正确显示。 我正在使用Buefy
我的$ip_long= ip2long($ip);
$stmt = $mysqli -> prepare('SELECT INET_NTOA(ip), registry_date FROM users WHERE ip = ?');
if (
$stmt &&
$stmt -> bind_param('i', $ip_long) &&
$stmt -> execute() &&
$stmt -> store_result() &&
$stmt -> bind_result($ip, $registry_date_checker) &&
$stmt -> fetch()
) {
if($stmt -> num_rows === 0) {
//It does never enter here.
}
if($stmt -> num_rows === 1) {
//If exist enter here.
}
}
else{
//If select not found anything it always enter here.
echo "Error mysqli: ".$mysqli-> error; //Returns empty error
echo "Error stmt : ".$stmt -> error; //Returns empty error
echo "Numrows: ".$stmt -> num_rows; //Returns 0
exit;
}
文件
nuxt.config.js
export default {
mode: 'universal',
css: [
'@/assets/sass/main.sass',
],
modules: [
'@nuxtjs/pwa',
['nuxt-buefy', {
defaultIconPack: 'fas',
css : true
}],
],
}
assets/sass/main.sass
我没有找到任何解决方案。 任何帮助将不胜感激
答案 0 :(得分:0)
另一种选择将buefy添加为插件,并且将ssr true设置为
{ src: '~/plugins/buefy-plugin', ssr: true }