首页 > 解决方案 > 在 Nuxt/Vue 应用程序中使用 tawk.to

问题描述

有谁知道如何在 Nuxt 应用程序中使用 tawk.to?

我使用以下代码在我的插件文件夹中创建了一个文件“tawk.js”:

var Tawk_API = Tawk_API || {},
  Tawk_LoadStart = new Date()
  (function () {
    var s1 = document.createElement('script')
    s0 = document.getElementsByTagName('script')[0]
    s1.async = true
    s1.src = 'https://embed.tawk.to/[my_ID_HERE]/default'
    s1.charset = 'UTF-8'
    s1.setAttribute('crossorigin', '*')
    s0.parentNode.insertBefore(s1, s0)
  })()

我也把它放在 nuxt.config.js 上:

  plugins: [
    { src: '~/plugins/tawk.js', ssr: false }
  ]

它没有用。它确实显示了一些编译错误:

1:1   error  Split initialized 'var' declarations into multiple statements
1:5   error  Identifier 'Tawk_API' is not in camel case
1:16  error  Identifier 'Tawk_API' is not in camel case
1:16  error  'Tawk_API' was used before it was defined
2:3   error  Identifier 'Tawk_LoadStart' is not in camel case
2:3   error  'Tawk_LoadStart' is assigned a value but never used
2:29  error  Unexpected space between function name and paren
3:3   error  Unexpected newline between function and ( of function call
5:5   error  's0' is not defined
10:5   error  's0' is not defined
10:36  error  's0' is not defined

标签: javascripthtmlvue.jsnuxt.jstawk.to

解决方案


tawk.to集成到 nuxt 项目中的最佳方法是nuxt.config.js将其添加为script标签。

// nuxt.config.js
export default {
    // ...
    head: {
        // ...
        script: [
            // ...
            {
                hid: 'tawk.to',
                src:
                    'https://embed.tawk.to/5edf699a9e5f694422903412/default',
                defer: true
            }
        ]
    },
},

推荐阅读