我正在使用仅包含菜单栏的 QML 开发基本的 OSX 应用程序:
module.exports = {
name: "my-fancy-component",
//---------v--- This part
methods: {
showNotif: function() {
console.log(this.$snotify.success('Example body content'))
}
},
...
}
不幸的是,菜单看起来不符合预期:
通常,菜单项会出现在 Apple 菜单旁边,该菜单项仅包含 MenuTest 在这里:
答案 0 :(得分:1)