import mustache from 'mustache'; import vectorMenu from '!!raw-loader!../includes/templates/VectorMenu.mustache'; import '../resources/skins.vector.styles/navigation.less'; import '../.storybook/common.less'; import { htmluserlangattributes } from './utils'; export default { title: 'Menu' }; export const more = () => mustache.render( vectorMenu, { 'empty-portlet': '', 'msg-label': 'More', 'menu-id': 'p-cactions', 'menu-label-id': 'p-cactions-label', 'html-userlangattributes': htmluserlangattributes, 'html-items': `
  • Delete
  • Move
  • Protect
  • ` } ); export const variants = () => mustache.render( vectorMenu, { 'msg-label': '新加坡简体', 'menu-id': 'p-variants', 'menu-label-id': 'p-variants-label', 'html-userlangattributes': htmluserlangattributes, 'html-items': `
  • 不转换
  • 简体
  • 繁體
  • 大陆简体
  • 香港繁體
  • 澳門繁體
  • 新加坡简体
  • 臺灣正體
  • ` } );