为vue编写单个文件组件

时间:2018-03-23 08:57:51

标签: javascript vue.js

我写这个页面基本上是我的第三个vue应用程序,我也是js的新手

$(document).click(function(e) {
  var target = e.target; //target div recorded
  if (!$(target).is('.multi-select ') ) {
    $('.multi-select-options span').css('display', 'none');
    $('.multi-select-options label').css('display', 'none');
  }
});

我想知道如何成为vue的单个文件组件,我几乎可以找出tempalte和样式部分,但脚本部分会变得混乱。

1 个答案:

答案 0 :(得分:0)

您可以在Single File Components阅读更多内容。单个文件组件正在使用java.lang.ClassCastException: [B cannot be cast to java.base/java.lang.Integer at org.omnifaces.util.Hacks.removeViewState(Hacks.java:432) at org.omnifaces.viewhandler.OmniViewHandler.unloadView(OmniViewHandler.java:134) at org.omnifaces.viewhandler.OmniViewHandler.restoreView(OmniViewHandler.java:101) at javax.faces.application.ViewHandlerWrapper.restoreView(ViewHandlerWrapper.java:97) 扩展名。这些文件需要使用Webpack进行编译。

使用单个文件组件创建应用程序的最佳方法是使用Vue CLI。这将为您的应用程序生成样板。