Sass ZURB基金会错误:没有混合名

Sass ZURB基金会错误:没有混合名,sass,package,zurb-foundation,Sass,Package,Zurb Foundation,关于“基础”:“5.3.0”为什么在编译Sass(通过gulp Sass)时会产生错误:没有混合命名面板 似乎我错过了一些重要的东西,但哪一个 也可能值得包括: //# foundation/scss/foundation.scss @import "foundation/components/grid", "foundation/components/accordion", "foundation/components/alert-boxes", "foundation/co

关于
“基础”:“5.3.0”
为什么在编译Sass(通过gulp Sass)时会产生
错误:没有混合命名面板


似乎我错过了一些重要的东西,但哪一个

也可能值得包括:

//# foundation/scss/foundation.scss
@import
  "foundation/components/grid",
  "foundation/components/accordion",
  "foundation/components/alert-boxes",
  "foundation/components/block-grid",
  "foundation/components/breadcrumbs",
  "foundation/components/button-groups",
  "foundation/components/buttons",
  "foundation/components/clearing",
  "foundation/components/dropdown",
  "foundation/components/dropdown-buttons",
  "foundation/components/flex-video",
  "foundation/components/forms",
  "foundation/components/icon-bar",
  "foundation/components/inline-lists",
  "foundation/components/joyride",
  "foundation/components/keystrokes",
  "foundation/components/labels",
  "foundation/components/magellan",
  "foundation/components/orbit",
  "foundation/components/pagination",
  "foundation/components/panels", //<--- shouldn't this be providing the mixin?
  "foundation/components/pricing-tables",
  "foundation/components/progress-bars",
  "foundation/components/range-slider",
  "foundation/components/reveal",
  "foundation/components/side-nav",
  "foundation/components/split-buttons",
  "foundation/components/sub-nav",
  "foundation/components/switches",
  "foundation/components/tables",
  "foundation/components/tabs",
  "foundation/components/thumbs",
  "foundation/components/tooltips",
  "foundation/components/top-bar",
  "foundation/components/type",
  "foundation/components/offcanvas",
  "foundation/components/visibility";
/#foundation/scss/foundation.scss
@进口
“基础/组件/网格”,
“基础/部件/手风琴”,
“基础/组件/警报框”,
“基础/构件/块体网格”,
“基础/组件/面包屑”,
“基础/组件/按钮组”,
“基础/组件/按钮”,
“基础/部件/清理”,
“基础/组件/下拉列表”,
“基础/组件/下拉按钮”,
“基础/组件/flex视频”,
“基础/组件/表格”,
“基础/组件/图标栏”,
“基础/组件/内联列表”,
“基础/部件/游乐设施”,
“基础/组件/击键”,
“基础/组件/标签”,
“基础/组件/麦哲伦”,
“基础/组件/轨道”,
“基础/组件/分页”,

“foundation/components/panels”,//如前所述,如果找到的每个.scss文件不以下划线开头,则Sass将编译该文件。因此,当找到
p.scss
时,Sass将在没有其他导入名称的情况下编译该文件。修复程序将文件名更改为
\u p.scss

可能重复:好吧,你知道什么!那是票。
//#p.css
.content-box {
   @include panel();
}
//# foundation/scss/foundation.scss
@import
  "foundation/components/grid",
  "foundation/components/accordion",
  "foundation/components/alert-boxes",
  "foundation/components/block-grid",
  "foundation/components/breadcrumbs",
  "foundation/components/button-groups",
  "foundation/components/buttons",
  "foundation/components/clearing",
  "foundation/components/dropdown",
  "foundation/components/dropdown-buttons",
  "foundation/components/flex-video",
  "foundation/components/forms",
  "foundation/components/icon-bar",
  "foundation/components/inline-lists",
  "foundation/components/joyride",
  "foundation/components/keystrokes",
  "foundation/components/labels",
  "foundation/components/magellan",
  "foundation/components/orbit",
  "foundation/components/pagination",
  "foundation/components/panels", //<--- shouldn't this be providing the mixin?
  "foundation/components/pricing-tables",
  "foundation/components/progress-bars",
  "foundation/components/range-slider",
  "foundation/components/reveal",
  "foundation/components/side-nav",
  "foundation/components/split-buttons",
  "foundation/components/sub-nav",
  "foundation/components/switches",
  "foundation/components/tables",
  "foundation/components/tabs",
  "foundation/components/thumbs",
  "foundation/components/tooltips",
  "foundation/components/top-bar",
  "foundation/components/type",
  "foundation/components/offcanvas",
  "foundation/components/visibility";