Files
smart-table/packages/table/index.js

15 lines
281 B
JavaScript
Raw Normal View History

2020-01-13 16:25:20 +08:00
import './index.scss'
import initMixin from './src/core'
function Table(options) {
if (!(this instanceof Table)) {
console.error('Smart Table is a constructor and should be called with the `new` keyword')
}
this._init(options)
}
initMixin(Table)
export default Table