Skip to content

Commit

Permalink
fix: gtmId should initialise as null
Browse files Browse the repository at this point in the history
  • Loading branch information
cajames committed Jul 25, 2018
1 parent 256c912 commit 71e1321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import TagManager from "./TagManager";
import { TagManagerConfig } from './types'

const install = function(Vue, initConf: TagManagerConfig = { gtmId : '' }) {
const install = function(Vue, initConf: TagManagerConfig = { gtmId : null }) {
TagManager.initialize(initConf)
}

Expand Down

0 comments on commit 71e1321

Please sign in to comment.