mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-12 16:59:01 +08:00
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
import '@babel/polyfill'
|
|
import Vue from 'vue'
|
|
import VueRouter from 'vue-router'
|
|
import svgSpriteLoader from 'helpers/svg-sprite-loader'
|
|
import App from 'Components/App'
|
|
import RouteMenuBar from 'Components/Routes/MenuBar'
|
|
import RouteMenuBubble from 'Components/Routes/MenuBubble'
|
|
import RouteLinks from 'Components/Routes/Links'
|
|
import RouteHidingMenuBar from 'Components/Routes/HidingMenuBar'
|
|
import RouteTodoList from 'Components/Routes/TodoList'
|
|
import RouteMarkdownShortcuts from 'Components/Routes/MarkdownShortcuts'
|
|
|
|
const __svg__ = { path: './assets/images/icons/*.svg', name: 'assets/images/[hash].sprite.svg' }
|
|
svgSpriteLoader(__svg__.filename)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
component: RouteMenuBar,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/MenuBar',
|
|
},
|
|
},
|
|
{
|
|
path: '/menu-bubble',
|
|
component: RouteMenuBubble,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/MenuBubble',
|
|
},
|
|
},
|
|
{
|
|
path: '/links',
|
|
component: RouteLinks,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/Links',
|
|
},
|
|
},
|
|
{
|
|
path: '/hiding-menu-bar',
|
|
component: RouteHidingMenuBar,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/HidingMenuBar',
|
|
},
|
|
},
|
|
{
|
|
path: '/todo-list',
|
|
component: RouteTodoList,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/TodoList',
|
|
},
|
|
},
|
|
{
|
|
path: '/markdown-shortcuts',
|
|
component: RouteMarkdownShortcuts,
|
|
meta: {
|
|
githubUrl: 'https://github.com/heyscrumpy/tiptap/tree/master/examples/Components/Routes/MarkdownShortcuts',
|
|
},
|
|
},
|
|
]
|
|
|
|
const router = new VueRouter({
|
|
routes,
|
|
linkActiveClass: 'is-active',
|
|
linkExactActiveClass: 'is-exact-active',
|
|
})
|
|
|
|
new Vue({
|
|
router,
|
|
render: h => h(App),
|
|
}).$mount('#app')
|