This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| ALTER PROCEDURE [dbo].[JsonConfig_Read_Key] | |
| @key nvarchar(max) | |
| AS | |
| DECLARE @json NVARCHAR(max) | |
| SET @json = | |
| (SELECT [JsonConfig].[Configuration] from JsonConfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[JsonConfig]( | |
| [Id] [int] NOT NULL, | |
| [Configuration] [nvarchar](max) NULL, | |
| PRIMARY KEY CLUSTERED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="hello"> | |
| <h1>{{ msg }}</h1> | |
| <h2 v-bind:title="tooltip">{{ employee }}</h2> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'hello', |
NewerOlder