Welcome to mirror list, hosted at ThFree Co, Russian Federation.

init_index.js « databases « google_cloud « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 931143833cb06a73c82a5ea0eab8acf953dd3821 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Vue from 'vue';
import Panel from './panel.vue';

export default () => {
  const element = document.querySelector('#js-google-cloud-databases');
  const attrs = JSON.parse(element.getAttribute('data'));
  return new Vue({
    el: element,
    render: (createElement) => createElement(Panel, { attrs }),
  });
};