Skip to content
View dochner's full-sized avatar
🏠
🏠
Block or Report

Block or report dochner

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. flex-box-grid-system.scss flex-box-grid-system.scss
    1
    .row {
    2
      box-sizing: border-box;
    3
      margin: 0 auto;
    4
      width: 100%;
    5
      display: -ms-flexbox;
  2. This is a workaround to template mul... This is a workaround to template multiple slots of some vue component
    1
    <template v-for="(_, name) in $slots" #[name]="slotProps = {}">
    2
      <slot v-bind="slotProps" :name="name"></slot>
    3
    </template>
  3. vue-expand-transition-component vue-expand-transition-component
    1
    <script setup>
    2
    const beforeEnter = (element) => {
    3
      requestAnimationFrame(() => {
    4
        if (!element.style.height) {
    5
          element.style.height = '0px';
  4. eslint.config.js > vue3 eslint.config.js > vue3
    1
    import eslint from '@eslint/js';
    2
    import tseslint from 'typescript-eslint';
    3
    import pluginVue from 'eslint-plugin-vue';
    4
    
                  
    5
    export default tseslint.config(