将 fivem Lua 脚本与 vue.js 连接

你好,我有关于将 lua 与 vue.js 连接的一些问题

<span id="my-level" class='my-level-text'>LEVEL {{currentLv}}</span>

这是我的 index.html 代码

  el: '#app',
  data: {
    visable: false,
    currentLv: 0,
  }````

这是我的 index.js 代码

我想知道如何使用 lua 将值放入 {{currentLV}} 

原文链接 https://stackoverflow.com/questions/69843893

点赞