vuetifyjs / eslint-plugin-vuetify

An eslint plugin for Vuetify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fails on empty class

jaxn opened this issue · comments

A component with a null class creates an error that is difficult to track down.

You should be able to reproduce with:

<template>
  <v-container>
    <v-layout class>
      <v-flex>Oops</v-flex>
    </v-layout>
  </v-container>
</template>