Skip to content
Snippets Groups Projects
SyntheticPage.vue 1.21 KiB
<template>
  <div
    
    class="flex flex-wrap justify-center"
  >
    <div class="w-5/6">
      <div class="p-4">
        <h2>Synthetic Condensates (Experiments)</h2>
      </div>

      <data-table
        id="condensateTable"
        category="condensate"
        :is-experimental="true"
      />
    </div>
  </div>
</template>

<script>
  import DataTable from '@/components/Datatable/CondensateDataTable';
  const _ = require('lodash')

  export default {
    name: 'SyntheticPage',
    components: {
      DataTable,
    },
    props: {
      msg: String
    },
    data() {
      return {
        isDev: process.env.NODE_ENV === 'development'
      }
    },
    computed: {
    },
    methods: {
    }
  }
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
    @import url('~@/assets/bootstrap.css');
    @import url('~@/assets/datatable.css');

    .main {
        margin: 1.5rem;
    }

    h3 {
        margin: 40px 0 0;
    }

    a {
        color: #42b983;
    }

    ul.a {
        list-style-type: disc;
        list-style-position: inside;
    }

    input[type="radio"] {
        margin: 2px;
    }

    .radio-label {
        margin-left: 0px;
        margin-right: 5px;
    }
</style>